/* =================================================================== */
/* Unique CSS Code For The Professional Service Page Layout
/* =================================================================== */

/* --- 1. الأنماط الأساسية للقسم الرئيسي --- */
.pro-service-section {
    padding: 80px 0;
}

/* --- 2. أنماط العناوين الرئيسية (فريدة لهذا التصميم) --- */
.pro-section-heading {
  margin-bottom: 60px;
  text-align: center;
}
.pro-section-heading .pro-category {
  background-color: #801313;
  color: #fff;
  font-size: 16px; /* تم تصغيره قليلاً ليتناسب مع التصميم */
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}
.pro-section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0;
  line-height: 1.4;
}
.pro-section-heading p.mt-3 {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 800px; /* تحديد عرض النص لسهولة القراءة */
  margin: 0 auto;
}
.dark-mode .pro-section-heading p.mt-3 {
  color: #cccccc;
}


/* --- 3. أنماط قسم عرض الخطوات/الميزات --- */
.pro-process-section {
    position: relative;
    padding: 60px 0;
}

.pro-process-step {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.pro-process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.pro-process-step .pro-image-container {
    flex: 1;
    padding: 0 30px;
    position: relative;
}

.pro-process-step .pro-image-container img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dark-mode .pro-process-step .pro-image-container img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pro-process-step .pro-content-container {
    flex: 1;
    padding: 0 30px;
}

.pro-process-step:nth-child(even) .pro-content-container {
     padding-right: 30px;
     padding-left: 0;
}
.pro-process-step:nth-child(odd) .pro-content-container {
    padding-left: 30px;
    padding-right: 0;
}

.pro-process-step .pro-step-number {
    display: inline-block;
    background-color: #801313;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.pro-process-step h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pro-process-step .pro-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a4a4a;
}
.dark-mode .pro-process-step .pro-description {
    color: #cccccc;
}

.pro-process-step .pro-features-list {
    list-style: none;
    padding: 0;
}

.pro-process-step .pro-features-list li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}

.pro-process-step .pro-features-list i.fa-check {
    color: #801313;
    margin-right: 12px;
    font-size: 18px;
    margin-top: 4px;
}

/* --- 4. أنماط قسم الحجز --- */
.pro-cta-section {
    padding: 80px 0;
    background-color: #282828; /* لون مختلف لتمييزه */
    border-radius: 25px;
    margin: 40px 0;
    text-align: center;
    color: #fff;
}
.dark-mode .pro-cta-section {
    background-color: #1f1f1f;
}

.pro-cta-section h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.pro-cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 30px;
}

.pro-cta-section .white-pill-button.large-button {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
}


/* --- 5. التصميم المتجاوب مع الموبايل --- */
@media (max-width: 991px) {
    .pro-process-step,
    .pro-process-step:nth-child(even) {
        flex-direction: column;
        margin-bottom: 60px;
    }
    
    .pro-process-step .pro-image-container {
        padding: 0;
        margin-bottom: 30px;
    }
    .pro-process-step .pro-content-container,
    .pro-process-step:nth-child(even) .pro-content-container,
    .pro-process-step:nth-child(odd) .pro-content-container {
        padding: 0;
        text-align: center;
    }
    .pro-process-step .pro-features-list {
       justify-content: center;
    }
    .pro-process-step .pro-features-list li {
       text-align: right; /* محاذاة النص لليمين داخل النقطة */
    }
}