/* تطبيق خط Cairo على كل العناصر */
* {
    font-family: 'Cairo', sans-serif;
}

/* تنسيقات عامة */
body {
    background-color: #f8f9fa;
}

/* تنسيق القائمة العلوية */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 2rem;
}

.navbar-nav {
    margin-right: 2rem;
}

.nav-item {
    margin: 0 1rem;
}

/* تنسيق العناوين */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* تنسيق الفقرات */
p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* تنسيق البطاقات */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* تنسيق الأزرار */
.btn-primary {
    background-color: #3498db;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* تنسيق النموذج */
.form-control {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: none;
}

/* تنسيق التذييل */
footer {
    background-color: #2c3e50 !important;
}

.social-links a {
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* تنسيق التذييل الجديد */
.footer-new {
    background-color: #2c3e50;
    color: #ffffff;
    border-top: 1px solid #34495e;
}

.footer-new h4 {
    font-weight: 700;
    color: #ffffff;
}

.footer-new h5 {
    font-weight: 600;
    color: #ffffff;
}

.footer-links a {
    color: #ecf0f1;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.contact-info {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
}

.contact-info {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-info li.text-dark {
    color: #2c3e50 !important;
}

.contact-info i {
    color: #3498db;
    width: 20px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    opacity: 0.2;
    margin: 2rem 0;
}

.footer-description {
    color: #ffffff !important;
    line-height: 1.8;
    opacity: 0.9;
}

/* الأزرار العائمة */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    color: white;
}

.whatsapp-button {
    background-color: #25D366;
}

.call-button {
    background-color: #3498db;
}

.floating-button i {
    font-size: 24px;
}

/* تنسيقات متجاوبة */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}

/* تنسيق صفحة من نحن */
.about-section {
    padding: 50px 0;
}

.about-image {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

/* تأثيرات حركية */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
