* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Cairo", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
}

/* السكشن الرئيسي */
.hero-section {
    background-color: #205969; /* لون الخلفية الأزرق التركوازي الداكن */
    color: #ffffff;
    padding: 40px 20;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 105vh;
}

.hero-container {
    max-width: 1200px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* تنسيق النصوص */
.hero-text {
    flex: 1;
    max-width: 580px;
}

.hero-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #e2f1f5;
    margin-bottom: 35px;
    text-align: justify;
}

.hero-description .phone {
    direction: ltr;
    display: inline-block;
    font-weight: bold;
    color: #ffffff;
}

/* زر حجز الموعد */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #0b5c73;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #f0f8fa;
    transform: translateY(-2px);
}

/* تنسيق الصورة */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 25px; /* الانحناء الحاد للزوايا زي الصورة */
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-description {
        text-align: center;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Cairo", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
}

.microwave-issues-wrapper {
    width: 100%;
}

/* ------------ 1. قسم الأعطال الشائعة ------------ */
.common-faults {
    background-color: #dbe4e9; /* لون الخلفية الفاتح */
    padding: 60px 5%;
    text-align: center;
}

.section-title {
    color: #2b4c5e;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.cards-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.card {
    background-color: rgba(255, 255, 255, 0.45);
    border-radius: 16px;
    padding: 30px 20px;
    flex: 1 1 280px;
    max-width: 360px;
    text-align: center;
}

.card h3 {
    color: #2b4c5e;
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card p {
    color: #556b78;
    font-size: 0.98rem;
    line-height: 1.8;
}

/* ------------ 2. قسم الحلول المقدمة ------------ */
.solutions-section {
    background-color: #0b2239; /* الأزرق الكحلي الداكن */
    color: #ffffff;
    padding: 50px 5% 60px;
    text-align: center;
}

/* الشريط البيضاوي العلوي */
.pill-header {
    background-color: #ffffff;
    color: #2b4c5e;
    max-width: 950px;
    margin: 0 auto 35px;
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pill-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center; /* المحاذاة لليسار كما بالشاشة */
    padding-left: 20px;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #e0eaf0;
}

.features-list {
    list-style: none;
    max-width: 650px;
    margin: 0 auto 25px;
    text-align: center;
    display: inline-block;
}

.features-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    position: relative;
    padding-right: 22px;
    color: #ffffff;
}

.features-list li::before {
    content: "•";
    color: #ffffff;
    font-size: 1.5rem;
    position: absolute;
    right: 0;
    top: -4px;
}

.call-text {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #e0eaf0;
}

.phone {
    direction: ltr;
    display: inline-block;
    font-weight: bold;
}

/* زر حجز الموعد */
.btn-container {
    display: flex;
    justify-content: center;
    max-width: 950px;
    margin: 0 auto;
}

.cta-btn {
    background-color: #1a4261;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #24577f;
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 768px) {
    .pill-header h2 {
        text-align: center;
        padding-left: 0;
    }

    .btn-container {
        justify-content: center;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Cairo", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
}

.microwave-features-wrapper {
    width: 100%;
}

/* ------------ 1. قسم مميزات مركز الصيانة ------------ */
.features-section {
    background-color: #dbe4e9; /* خلفية القسم الفاتحة */
    padding: 50px 5% 60px;
    text-align: center;
}

.section-title {
    color: #2b4c5e;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
}

.features-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #5b92b1; /* لون البطاقات الأزرق */
    color: #ffffff;
    padding: 25px 20px;
    border-radius: 20px;
    flex: 1 1 220px;
    max-width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 600;
}

/* ------------ 2. قسم الضمان وقطع الغيار ------------ */
.guarantee-section {
    background-color: #173248; /* خلفية القسم الداكنة */
    color: #ffffff;
    padding: 50px 5% 60px;
    text-align: center;
}

.guarantee-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.guarantee-text {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 950px;
    margin: 0 auto;
    color: #d2e1eb;
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 768px) {
    .section-title {
        text-align: center;
        padding-right: 0;
    }

    .features-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 100%;
    }
}
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}