/* ==============================
   إعدادات عامة
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", Tahoma, Arial, sans-serif;
    color: #222;
    background-color: #fff;
    line-height: 1.7;
    font-size: 16px;
}

/* حاوية رئيسية */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==============================
   الهيدر
============================== */
.main-header {
    background: #222;
    color: #fff;
    padding: 25px 0;
    text-align: center;
}

.main-header h1 {
    font-size: 1.8em;
    font-weight: 700;
}

.main-header p {
    font-size: 1.1em;
    margin-top: 10px;
    color: #ccc;
}

/* ==============================
   بانر رئيسي
============================== */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero .overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 80px 20px;
}

.hero h2 {
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2em;
    max-width: 750px;
    margin: 0 auto 30px;
}

.cta-btn {
    display: inline-block;
    background-color: #ff6600;
    color: #fff;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(255,102,0,0.4);
}
.cta-btn:hover {
    background-color: #e85c00;
}

/* ==============================
   الخدمات
============================== */
.services {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.services h3 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #222;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 25px;
    flex: 1 1 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.service-card img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}

.service-card h4 {
    color: #ff6600;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.service-card p {
    color: #444;
    margin-bottom: 15px;
    font-size: 1em;
}

.service-card ul {
    list-style: none;
    text-align: right;
    color: #333;
}
.service-card ul li::before {
    content: "✓ ";
    color: #ff6600;
}

/* ==============================
   العروض
============================== */
.offers {
    background: #fafafa;
    padding: 60px 0;
    text-align: center;
}

.offers h3 {
    font-size: 2em;
    margin-bottom: 40px;
}

.offers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.offers-grid article {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    flex: 1 1 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.offers-grid h4 {
    color: #ff6600;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.offers-grid p {
    color: #555;
}

.price {
    margin-top: 10px;
    font-weight: 700;
}
.price span {
    color: #ff6600;
}

/* ==============================
   السكريبتات وطرق الدفع
============================== */
.extras {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.extras h3 {
    font-size: 2em;
    color: #222;
    margin-bottom: 30px;
}

.extras h4 {
    color: #ff6600;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    list-style: none;
}

.logos img {
    max-height: 40px;
    transition: transform 0.3s ease;
}
.logos img:hover {
    transform: scale(1.1);
}

/* ==============================
   اتصل بنا
============================== */
.contact {
    background: #222;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.contact h3 {
    font-size: 2em;
    margin-bottom: 25px;
}

.contact p {
    color: #ddd;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2em;
    margin: 10px 0;
}

.contact-info a {
    color: #ff6600;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

/* ==============================
   الفوتر
============================== */
.main-footer {
    background: #222;
    color: #aaa;
    padding: 20px 0;
    font-size: 0.9em;
}

.main-footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copy {
    flex: 1 1 300px;
    text-align: right;
}

.footer-link {
    color: #ff6600;
    text-decoration: none;
}
.footer-link:hover {
    text-decoration: underline;
}

.social ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
}
.social a {
    color: #aaa;
    font-size: 1.3em;
    transition: color 0.3s ease;
}
.social a:hover {
    color: #ff6600;
}

/* ==============================
   زر العودة للأعلى
============================== */
.scrollup {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #ff6600;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(255,102,0,0.6);
    transition: background-color 0.3s ease;
}
.scrollup:hover {
    background-color: #e85c00;
}

/* ==============================
   استجابة الشاشات الصغيرة
============================== */
@media (max-width: 768px) {
    .services-grid,
    .offers-grid {
        flex-direction: column;
        align-items: center;
    }
    .main-footer .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .hero h2 {
        font-size: 1.8em;
    }
}

.faq {
    background-color: #f9f9f9;
    padding: 50px 0;
    border-top: 3px solid #ff6600;
}



.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.faq-question i {
    font-size: 1.5rem;
    color: #ff6600;
    margin-right: 10px;
}


.faq-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-us {
    background-color: #fff;
    padding: 50px 0;
    border-top: 3px solid #ff6600;
}

.why-us h3 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.why-us p {
    text-align: center;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.why-us ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.why-us li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.why-us li i {
    font-size: 1.5rem;
    color: #ff6600;
    margin-right: 10px;
}

.why-us li:hover {
    transform: translateX(10px);
    color: #ff6600;
}

.why-us li:hover i {
    color: #333;
}
