﻿/* إعدادات عامة */
body {
    margin: 0;
    font-family: "Tahoma", "Arial", sans-serif;
    background: #fdfaf7; /* لون خلفية فاتح وهادئ */
    color: #222;
    line-height: 1.6;
    direction: rtl;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
}

/* الهيدر */
header {
    background: linear-gradient(90deg, #d62e2e, #0b6e4f); /* تدرج أحمر-أخضر عماني */
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

    header h1 {
        margin: 0;
        font-size: 1.6rem;
    }

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

nav {
    margin-top: 0.7rem;
}

    nav a {
        color: white;
        text-decoration: none;
        margin: 0 0.8rem;
        font-weight: bold;
        transition: color 0.3s;
    }

        nav a:hover {
            color: #ffd700; /* أصفر ذهبي عند المرور */
        }

/* الأقسام */
section {
    margin: 2rem 0;
    padding: 1rem 0;
}

h2 {
    color: #0b6e4f; /* الأخضر العماني */
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

/* القوائم */
ul {
    list-style: none;
    padding: 0;
}

/* النقاط في من نحن */
.features li {
    margin: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
}

    .features li i {
        position: absolute;
        left: 0;
        top: 0;
        color: #d62e2e; /* أحمر عماني */
    }

/* الخدمات */
.services-list li {
    background: #ffffff;
    padding: 0.9rem 1rem;
    margin-bottom: 0.6rem;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    border-left: 5px solid #0b6e4f; /* شريط أخضر على الجانب */
}

    .services-list li:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

/* المقالات */
.articles-grid {
    display: grid;
    gap: 1.2rem;
}

    .articles-grid article {
        background: #ffffff;
        padding: 1.2rem;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s, border-left 0.3s;
        border-left: 5px solid #d62e2e; /* شريط أحمر للعناوين */
    }

        .articles-grid article:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            border-left-color: #0b6e4f; /* يتغير للأخضر عند المرور */
        }

    .articles-grid h3 {
        color: #06503a; /* أخضر داكن */
        margin-top: 0;
    }

/* نموذج التواصل */
#contact {
    background: #f9f8f6; /* خلفية فاتحة دافئة */
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 3rem;
}

    #contact h2 {
        color: #d62e2e; /* عنوان أحمر */
        margin-bottom: 1rem;
        font-size: 1.6rem;
    }

    #contact p {
        margin-bottom: 1rem;
        color: #333;
        line-height: 1.5;
    }

    #contact form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: #ffffff;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    #contact label {
        display: flex;
        flex-direction: column;
        font-weight: 500;
        color: #333;
    }

    /* جميع الحقول متناسقة */
    #contact input,
    #contact textarea,
    #contact select {
        margin-top: 0.3rem;
        padding: 0.65rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 1rem;
        font-family: inherit;
        transition: border 0.3s, box-shadow 0.3s, background 0.3s;
        background: #fff;
        appearance: none;
    }

        #contact input:focus,
        #contact textarea:focus,
        #contact select:focus {
            border-color: #0b6e4f;
            box-shadow: 0 0 6px rgba(11,110,79,0.2);
            outline: none;
            background: #f0fff3;
        }

    /* زر الإرسال */
    #contact button {
        margin-top: 0.5rem;
        background: #d62e2e; /* أحمر بارز */
        color: white;
        border: none;
        padding: 0.8rem;
        font-size: 1rem;
        font-weight: bold;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

        #contact button:hover {
            background: #0b6e4f; /* يتحول للأخضر عند المرور */
            transform: translateY(-2px);
        }

#form-note {
    font-size: 0.95rem;
    color: #0b6e4f;
    font-weight: 500;
    margin-top: 10px;
}

/* تجاوب الفورم */
@media (max-width: 600px) {
    #contact form {
        padding: 1rem;
    }
}

/* الفوتر */
footer {
    text-align: center;
    padding: 1.5rem;
    background: #0b6e4f; /* أخضر أساسي */
    color: white;
    font-size: 0.95rem;
    margin-top: 3rem;
}

    footer a {
        color: #ffd700; /* أصفر ذهبي */
        text-decoration: none;
        margin: 0 0.5rem;
    }

        footer a:hover {
            text-decoration: underline;
        }

/* تجاوب الموقع */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .services-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .header-content {
        align-items: flex-start;
        text-align: right;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

        nav a {
            margin: 0.25rem;
        }

    #contact form {
        padding: 1rem;
    }
}
