﻿/* =============================================
   wwwroot/css/services.css
   Complete Services Page Styles - Clean Version
   ============================================= */

/* ==================== SERVICES PAGE CONTAINER ==================== */
.services-page {
    padding: 0 0 350px;
    background: #f8f9fa;
    min-height: 100vh;
    position: relative;
}

/* ==================== SEARCH BAR OVERLAY ==================== */
/*.services-search-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 180px;
    margin-top: -300px;
    position: relative;
    z-index: 1000;
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 20px;
    align-items: center;
}*/
.services-search-bar {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
    width: 100% !important;
    margin-right: 0px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 20px;
    align-items: center;
}
    .services-search-bar.redline {
        border-bottom: 4px solid #8b1528;
    }

/* ==================== SEARCH INPUT ==================== */
.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-bottom: 2px solid white;
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.01) !important;
   
    color: black;
    height: 48px;
}

    .search-input::placeholder {
        color: rgba(0, 0, 0, 1.00);
        opacity: 1;
    }
    /* For older browser support */
    .search-input::-webkit-input-placeholder {
        color: rgba(0, 0, 0, 1.00);
    }

    .search-input::-moz-placeholder {
        color: rgba(0, 0, 0, 1.00);
        opacity: 1;
    }

    .search-input:-ms-input-placeholder {
        color: white;
    }

    .search-input:focus {
        outline: none;
        border-bottom: 2px solid #c11516;
        background: #ffffff !important;
        color: #000000 !important;
        box-shadow: none;
    }

        .search-input:focus::placeholder {
            color: rgba(0, 0, 0, 0.5);
        }

.search-input-wrapper i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(44, 62, 80, 0.5);
    font-size: 18px;
}

/* ==================== CATEGORY SELECT ==================== */
.category-select,
.form-select.category-select {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: none;
    border-bottom: 2px solid white;
    border-radius: 0;
    font-size: 15px;
    background: transparent;
   /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;*/
   /* color: white;*/
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
    appearance: none;
}

    .category-select option {
        background-color: #1a1a1a;
        color: white;
    }

        .category-select option:hover {
            background-color: rgba(0, 0, 0, 0.9) !important;
            box-shadow: inset 100px 100px rgba(255, 255, 255, 0.4);
        }

        .category-select option:checked,
        .category-select option:focus {
            background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4));
            color: rgba(0, 0, 0, 0.9) !important;
        }

/* ==================== SEARCH BUTTON ==================== */
.btn-search {
    padding: 12px 30px;
    background: #c11516;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    white-space: nowrap;
    min-width: 150px;
}

    .btn-search:hover {
        background: #a01229;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(193, 21, 22, 0.3);
    }

    .btn-search i {
        font-size: 16px;
    }
     
 
   
   

/* ==================== PAGINATION ==================== */
.all-services-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 20px 0;
}

.pagination-controls-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-nav-btn {
    padding: 10px 20px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .page-nav-btn:hover:not(:disabled) {
        background: #c11516;
        color: #ffffff;
        border-color: #c11516;
    }

    .page-nav-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-num-btn {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .page-num-btn:hover,
    .page-num-btn.active {
        background: #c11516;
        color: #ffffff;
        border-color: #c11516;
    }

.page-ellipsis {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: #666;
}

.page-info-text {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== SERVICE DETAIL PAGE ==================== */
.service-detail-page {
    min-height: 100vh;
    padding-bottom: 100px;
    background-color: #f8f9fa;
}

html[lang="ar"] .service-detail-page,
html[dir="rtl"] .service-detail-page {
    min-height: 100vh;
    padding-bottom: 100px;
    background-color: #f8f9fa;
}
.service-header {
    padding: 0px 0 40px 0;
    background-color: #f8f9fa;
}

    .service-header h1 {
        font-size: 3rem;
        font-weight: 700;
        color: #231f20;
        margin: 0;
        line-height: 1.2;
    }

    .service-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #231f20;
        margin: 40px 0 20px 0;
    }

 
 

 

/* ==================== REQUIREMENTS CARD ==================== */
.requirements-card {
    background: #e8e1d8;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
     
}

    .requirements-card .card-icon {
        display: inline-flex;
        width: 50px;
        height: 50px;
        margin-right: 15px;
        vertical-align: middle;
    }

        .requirements-card .card-icon i {
            font-size: 2rem;
            color: #c11516;
        }

    .requirements-card h3 {
        display: inline-block;
        font-size: 16px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 25px 0;
        vertical-align: middle;
    }

.requirements-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

    .requirements-list li {
        margin-bottom: 12px;
        font-size: 12px;
        color: #666;
        line-height: 1.8;
    }

/* ==================== START SERVICE BUTTON ==================== */
.btn-start-service {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #c11516 0%, #a01229 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(193, 21, 22, 0.3);
    width: 100%;
}

    .btn-start-service:hover {
        background: linear-gradient(135deg, #a01229 0%, #8a1022 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(193, 21, 22, 0.4);
    }

/* ==================== FAQ SECTION ==================== */
 

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #ffffff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

    .faq-question:hover {
        background: #f8f8f8;
    }

    .faq-question span {
        flex: 1;
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
    }

    .faq-question i {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid #c11516;
        color: #c11516;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.faq-answer {
    padding: 0 25px 25px 25px;
    background: #e8e1d8;
}

    .faq-answer p {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
    }

/* ==================== RTL SUPPORT ==================== */
[dir="rtl"] .services-search-bar {
    direction: rtl;
}

[dir="rtl"] .search-input {
    padding: 15px 20px 15px 50px;
}

[dir="rtl"] .search-input-wrapper i {
    right: auto;
    left: 20px;
}

[dir="rtl"] .category-select,
[dir="rtl"] .form-select.category-select {
    padding: 12px 15px 12px 40px;
    background-position: left 15px center;
}

[dir="rtl"] .all-service-card:hover .all-service-link i {
    transform: translateX(-5px);
}

[dir="rtl"] .process-steps::before {
    left: auto;
    right: 30px;
}

[dir="rtl"] .step-content {
    text-align: right;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .services-page {
        padding: 0 0 40px;
    }

    .services-search-bar {
        padding: 30px 25px;
        margin-top: -150px;
        margin-bottom: 50px;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .btn-search {
        width: 100%;
        min-width: 100%;
    }

    .services-page-header h2 {
        font-size: 2rem;
    }

    .all-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, 265px);
        gap: 25px;
        justify-content: flex-start;
    }

    [dir="rtl"] .all-services-grid {
        justify-content: flex-end;
    }
    

    .pagination-controls-left {
        flex-direction: column;
        gap: 15px;
    }

    .all-services-pagination {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-search-bar {
        padding: 25px 20px;
        margin-top: -120px;
        margin-bottom: 40px;
        grid-template-columns: 1fr;
    }

    .search-input {
        padding: 12px 45px 12px 18px;
        font-size: 15px;
    }

    .category-select,
    .form-select.category-select {
        padding: 10px 35px 10px 15px;
        font-size: 14px;
        height: 44px;
    }

    .btn-search {
        width: 100%;
    }

    .services-page-header h2 {
        font-size: 1.75rem;
    }

    .all-services-grid {
        grid-template-columns: 1fr;
    }

    .service-header h1 {
        font-size: 1.75rem;
    }
}
 

/* Process Steps Container */
.process-steps {
    max-width: 800px;
   /* margin: 0 auto;*/
    position: relative;
    padding-left: 0;
}

    /* Vertical Line connecting steps */
    .process-steps::before {
        content: '';
        position: absolute;
        left: 24px;
        top: 40px;
        bottom: 40px;
        width: 2px;
        background: linear-gradient(to bottom, #e0e0e0 0%, #e0e0e0 100%);
    }

/* Individual Process Step */
.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    align-items: flex-start;
}

    .process-step:last-child {
        margin-bottom: 0;
    }

/* Step Number Circle */
.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8e1d8 0%, #d4cdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c11516;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Step Content */
.step-content {
    flex: 1;
    padding-top: 8px;
}

    .step-content h4 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .step-content p {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

/* Hover Effects */
.process-step:hover .step-number {
    transform: scale(1.1);
    background: linear-gradient(135deg, #c11516 0%, #a01229 100%);
    color: white;
    transition: all 0.3s ease;
}

.process-step:hover .step-content h4 {
    color: #c11516;
    transition: color 0.3s ease;
}

/* ========================================
   RTL SUPPORT - ARABIC
   ======================================== */

[dir="rtl"] .process-steps {
    padding-left: 0;
    padding-right: 0;
}

    [dir="rtl"] .process-steps::before {
        left: auto;
        right: 30px;
    }

[dir="rtl"] .process-step {
    /*direction: rtl;*/
    text-align: right;
}

[dir="rtl"] .step-content {
    text-align: right;
}

/* CRITICAL FIX: Ensure step number stays on the right in RTL */
[dir="rtl"] .step-number {
    margin-left: 0;
    margin-right: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .service-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .process-steps {
        padding-left: 0;
        padding-right: 0;
    }

        .process-steps::before {
            left: 22px;
        }

    .process-step {
        gap: 20px;
        margin-bottom: 40px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    [dir="rtl"] .process-steps::before {
        left: auto;
        right: 22px;
    }
}

@media (max-width: 480px) {
    .service-section {
        padding: 40px 0;
    }

        .service-section h2 {
            font-size: 1.75rem;
            margin-bottom: 30px;
        }

    .process-steps::before {
        left: 18px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    [dir="rtl"] .process-steps::before {
        left: auto;
        right: 18px;
    }
}
 

/* Service Channels List */
.service-channels-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
}

    .service-channels-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 0;
        font-size: 1.1rem;
        color: #666;
        border-bottom: 1px solid #f0f0f0;
    }

        .service-channels-list li:last-child {
            border-bottom: none;
        }

        /* Channel Icons */
        .service-channels-list li i {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c11516;
            font-size: 1.2rem;
        }

            /* Check circle icon specifically */
            .service-channels-list li i.fa-check-circle,
            .service-channels-list li i.fas.fa-check-circle {
                color: #c11516;
            }

        /* Channel Labels */
        .service-channels-list li strong {
            color: #2c3e50;
            font-weight: 500;
            margin-right: 5px;
        }

        /* Channel Links */
        .service-channels-list li a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .service-channels-list li a:hover {
                color: #c11516;
                text-decoration: underline;
            }

        /* Channel Text (non-links) */
        .service-channels-list li span {
            color: #666;
        }

        /* Hover effect on entire list item */
        .service-channels-list li:hover {
            background: #fafafa;
            padding-left: 10px;
            margin-left: -10px;
            transition: all 0.3s ease;
        }

/* ========================================
   RTL SUPPORT - ARABIC
   ======================================== */

[dir="rtl"] .service-channels-list li {
    /*flex-direction: row-reverse;*/
    text-align: right;
}

    [dir="rtl"] .service-channels-list li strong {
        margin-right: 0;
        margin-left: 5px;
    }

    [dir="rtl"] .service-channels-list li:hover {
        padding-left: 0;
        padding-right: 10px;
        margin-left: 0;
        margin-right: -10px;
    }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .service-section h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .service-channels-list li {
        font-size: 1rem;
        padding: 12px 0;
        gap: 10px;
    }

        .service-channels-list li i {
            width: 20px;
            height: 20px;
            font-size: 1rem;
        }
}

@media (max-width: 480px) {
    .service-section {
        padding: 40px 0;
    }

        .service-section h2 {
            font-size: 1.75rem;
            margin-bottom: 20px;
        }

    .service-channels-list li {
        font-size: 0.95rem;
        padding: 10px 0;
        flex-wrap: wrap;
    }

        .service-channels-list li strong {
            flex-basis: 100%;
            margin-bottom: 5px;
        }
}
/* ========================================
   FAQ SECTION - ACCORDION
   ======================================== */

.service-section {
    background-color: #f8f9fa;
}

    .service-section h2 {
        font-size: 2.5rem;
        font-weight: normal;
        color: #2c3e50;
        margin-bottom: 20px;
    }

  
/* Individual FAQ Item */
.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #ffffff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

    .faq-question:hover {
        background: #f8f8f8;
    }

/* Active/Expanded State */
.faq-item:has(.faq-answer) .faq-question {
    background: #e8e1d8;
}

.faq-question span {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

.faq-question i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #c11516;
    color: #c11516;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-question:hover i {
    background: #c11516;
    color: white;
    transform: rotate(90deg);
}

/* FAQ Answer */
.faq-answer {
    padding: 0 25px 25px 25px;
    background: #e8e1d8;
    animation: slideDown 0.3s ease;
}

    .faq-answer p {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

/* Slide Down Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RTL SUPPORT - ARABIC
   ======================================== */

[dir="rtl"] .faq-question {
    text-align: right;
   direction: rtl;
}

[dir="rtl"] .faq-answer {
    text-align: right;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .service-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 18px 20px;
    }

        .faq-question span {
            font-size: 1rem;
        }

        .faq-question i {
            width: 28px;
            height: 28px;
            font-size: 0.85rem;
        }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

        .faq-answer p {
            font-size: 0.95rem;
        }
}

@media (max-width: 480px) {
    .service-section {
        padding: 40px 0;
    }

        .service-section h2 {
            font-size: 1.75rem;
            margin-bottom: 25px;
        }

    .faq-question {
        padding: 15px 18px;
        gap: 15px;
    }

        .faq-question span {
            font-size: 0.95rem;
        }

        .faq-question i {
            width: 26px;
            height: 26px;
            font-size: 0.8rem;
        }

    .faq-answer {
        padding: 0 18px 18px 18px;
    }

        .faq-answer p {
            font-size: 0.9rem;
        }
}
/* ========================================
   START SERVICE BUTTON
   ======================================== */

.btn-start-service {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #c11516 0%, #a01229 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(193, 21, 22, 0.3);
    min-width: 100%;
    text-decoration:none;
}

    .btn-start-service:hover {
        background: linear-gradient(135deg, #a01229 0%, #8a1022 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(193, 21, 22, 0.4);
        color:#ffffff !important;
    }

    .btn-start-service:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(193, 21, 22, 0.3);
        color: #ffffff !important;
    }

    .btn-start-service i {
        font-size: 1rem;
        transition: transform 0.3s ease;
        color: #ffffff !important;
    }

    .btn-start-service:hover i {
        transform: translateX(5px);
        color: #ffffff !important;
    }

/* ========================================
   RTL SUPPORT - ARABIC
   ======================================== */

[dir="rtl"] .btn-start-service {
   direction: rtl;
}

    [dir="rtl"] .btn-start-service i {
        transform: rotate(180deg);
    }

    [dir="rtl"] .btn-start-service:hover i {
        transform: rotate(180deg) translateX(5px);
    }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .btn-start-service {
        padding: 14px 25px;
        font-size: 1rem;
        min-width: 180px;
    }

        .btn-start-service i {
            font-size: 0.9rem;
        }
}

@media (max-width: 480px) {
    .btn-start-service {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
        justify-content: center;
    }
}
/* ========================================
   REQUIREMENTS CARD
   ======================================== */

.requirements-card {
    background: #e8e1d8;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
     
}

    /* Card Header - Icon and Title in same row */
    .requirements-card .card-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        margin-right: 15px;
        vertical-align: middle;
    }

        .requirements-card .card-icon i {
            font-size: 2rem;
            color: #c11516;
        }

    /* Card Title - Inline with Icon */
    .requirements-card h3 {
        display: inline-block;
        font-size: 16px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
        margin-bottom: 25px;
        vertical-align: middle;
    }

/* Requirements List */
.requirements-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    clear: both;
}

    .requirements-list li {
        margin-bottom: 12px;
        font-size: 16px !important;
        font-weight: 400;
        color: #000000;
        line-height: 1.8;
        padding-left: 5px;
    }

        .requirements-list li:last-child {
            margin-bottom: 0;
        }

        .requirements-list li::marker {
            color: #2c3e50;
            font-size: 14px;
        }

/* ========================================
   RTL SUPPORT - ARABIC
   ======================================== */

[dir="rtl"] .requirements-card {
    text-align: right;
}

    [dir="rtl"] .requirements-card .card-icon {
        margin-right: 0;
        margin-left: 15px;
    }

[dir="rtl"] .requirements-list {
    padding-left: 0;
    padding-right: 20px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .requirements-card {
        padding: 30px;
        max-width: 100%;
    }

        .requirements-card .card-icon {
            width: 45px;
            height: 45px;
            margin-right: 12px;
        }

            .requirements-card .card-icon i {
                font-size: 1.75rem;
            }

        .requirements-card h3 {
            font-size: 15px;
            margin-bottom: 20px;
        }

    .requirements-list {
        padding-left: 18px;
    }

        .requirements-list li {
            font-size: 11px;
            margin-bottom: 10px;
        }

    [dir="rtl"] .requirements-card .card-icon {
        margin-left: 12px;
    }

    [dir="rtl"] .requirements-list {
        padding-right: 18px;
    }
}

@media (max-width: 480px) {
    .requirements-card {
        padding: 25px 20px;
        margin: 30px 0;
    }

        .requirements-card .card-icon {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }

            .requirements-card .card-icon i {
                font-size: 1.5rem;
            }

        .requirements-card h3 {
            font-size: 14px;
            margin-bottom: 18px;
        }

    .requirements-list {
        padding-left: 16px;
    }

        .requirements-list li {
            font-size: 11px;
            padding-left: 3px;
        }

    [dir="rtl"] .requirements-card .card-icon {
        margin-left: 10px;
    }

    [dir="rtl"] .requirements-list {
        padding-right: 16px;
    }
}
/* ========================================
   SERVICE RATING CARD - SINGLE ROW
   ======================================== */

.rating-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    flex-wrap: wrap;
}

    /* Rating Title */
    .rating-card h4 {
        font-size: 16px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
        white-space: nowrap;
    }

/* Rating Stars Container */
.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

    /* Star Icons */
    .rating-stars i {
        font-size: 1.25rem;
        color: #c11516;
    }

    /* Empty Star */
    .rating-stars .far.fa-star {
        color: #d0d0d0;
    }

/* Rating Value */
.rating-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-left: 5px;
}

/* Review Count */
.review-count {
    font-size: 14px;
    color: #666;
    margin: 0;
    white-space: nowrap;
}

/* ========================================
   RTL SUPPORT - ARABIC
   ======================================== */

[dir="rtl"] .rating-card {
    /*direction: rtl;*/
}

[dir="rtl"] .rating-stars {
   direction: rtl;
}

[dir="rtl"] .rating-value {
    margin-left: 0;
    margin-right: 5px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .rating-card {
        gap: 15px;
    }

        .rating-card h4 {
            font-size: 15px;
        }

    .rating-stars i {
        font-size: 1.1rem;
    }

    .rating-value {
        font-size: 15px;
    }

    .review-count {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .rating-card {
        gap: 12px;
    }

        .rating-card h4 {
            font-size: 14px;
        }

    .rating-stars {
        gap: 6px;
    }

        .rating-stars i {
            font-size: 1rem;
        }

    .rating-value {
        font-size: 14px;
    }

    .review-count {
        font-size: 12px;
    }
}
/* ========================================
   SERVICE HEADER
   ======================================== */


    .service-header h1 {
        font-size: 3rem;
        font-weight: 700;
        color: #231f20;
        margin: 0;
        line-height: 1.2;
    }

    /* About the Service subheading */
    .service-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #231f20;
        margin: 40px 0 20px 0;
    }

/* ========================================
   RTL SUPPORT - ARABIC
   ======================================== */

[dir="rtl"] .service-header {
    text-align: right;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .service-header {
        padding: 40px 0 30px 0;
    }

        .service-header h1 {
            font-size: 2.25rem;
        }

        .service-header h2 {
            font-size: 1.5rem;
            margin: 30px 0 15px 0;
        }
}

@media (max-width: 480px) {
    .service-header {
        padding: 30px 0 20px 0;
    }

        .service-header h1 {
            font-size: 1.75rem;
        }

        .service-header h2 {
            font-size: 1.25rem;
            margin: 25px 0 12px 0;
        }
}

/* Fees Table Style */
 
.fees-table {
    width: 100%;
    border-collapse: collapse;
}

    .fees-table th {
        background-color: #f8f9fa;
        padding: 12px 15px;
        text-align: left;
        font-weight: 600;
        border-bottom: 2px solid #dee2e6;
        color: #495057;
    }

    .fees-table td {
        padding: 12px 15px;
        border-bottom: 0px solid #dee2e6;
        vertical-align: middle;
    }

    .fees-table tbody tr:hover {
        background-color: #f8f9fa;
    }

.fee-amount {
    font-weight: 600;
    color: #28a745;
    font-size: 1.1em;
}

/* RTL Support */
[dir="rtl"] .fees-table th,
[dir="rtl"] .fees-table td {
    text-align: right;
}

/* Fee Card Style (Alternative) */
.fee-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: box-shadow 0.2s ease;
}

    .fee-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .fee-card .card-title {
        color: #2c3e50;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

.fee-amount-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fees-table thead {
        display: none;
    }

    .fees-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 1rem;
    }

    .fees-table td {
        display: block;
        border: none;
        padding: 5px 0;
    }

        .fees-table td:before {
            content: attr(data-label);
            font-weight: 600;
            margin-right: 10px;
            color: #6c757d;
        }

    .fee-amount {
        font-size: 1.25em;
    }
}
/* =============================================
   Service Fees & Attachments Styles
   Add to: /css/services.css
   ============================================= */

/* Fee Duration List in Duration Section */
.fee-duration-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

    .fee-duration-list li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

        .fee-duration-list li:last-child {
            border-bottom: none;
        }

        .fee-duration-list li strong {
            color: #2c3e50;
        }

/* Fees Table Style */
.service-fees-list {
    margin-top: 1rem;
    background-color: #f8f9fa;
}

.fees-table {
    width: 100%;
    border-collapse: collapse;
}

    .fees-table th {
        background-color: #f8f9fa;
        padding: 12px 15px;
        font-weight: normal;
        border-bottom: 0px solid #dee2e6;
        color: #000000;
    }

    .fees-table td {
        padding: 12px 15px;
        border-bottom: 0px solid #dee2e6;
        vertical-align: middle;
    }

    .fees-table tbody tr:hover {
        background-color: #f8f9fa;
    }

.fee-amount {
    font-weight: normal;
    color: #000000;
    font-size: 1.1em;
}

/* RTL Support */
[dir="rtl"] .fees-table th,
[dir="rtl"] .fees-table td {
    text-align: right;
}

[dir="rtl"] .fee-duration-list {
    padding-right: 0;
}

/* Attachments Card in Sidebar */
.attachments-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

    .attachments-card h3 {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #007bff;
    }

.attachments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .attachments-list li {
        margin-bottom: 15px;
    }

        .attachments-list li:last-child {
            margin-bottom: 0;
        }

.btn-attachment {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .btn-attachment:hover {
        background-color: #007bff;
        color: #fff;
    }

    .btn-attachment i {
        color: #007bff;
    }

    .btn-attachment:hover i {
        color: #fff;
    }

/* RTL Support for Attachments */
[dir="rtl"] .btn-attachment {
    text-align: right;
}

    [dir="rtl"] .btn-attachment i {
        margin-left: 8px;
        margin-right: 0;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .fees-table thead {
        display: none;
    }

    .fees-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 1rem;
    }

    .fees-table td {
        display: block;
        border: none;
        padding: 5px 0;
    }

        .fees-table td:before {
            content: attr(data-label);
            font-weight: 600;
            margin-right: 10px;
            color: #6c757d;
        }

    .fee-amount {
        font-size: 1.25em;
    }

    .attachments-card {
        padding: 15px;
    }

    .btn-attachment {
        font-size: 0.9rem;
    }
}

.material-symbols-outlined {
    font-family: "Material Symbols Outlined" !important;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}


.fee-amount {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.icon-aed {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('/images/icons/aed.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    flex-shrink: 0;
}
.currency-icon {
    width: 1em;
    height: 1em;
    vertical-align: middle;
}
 