/* ====== Main Styles for Services Page ====== */
body {
    background: #262626;
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.logo {
    position: absolute;
    right: 30px;
    top: -30px;
    height: 130px;
    z-index: 1001;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-right: 180px;
    margin-left: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 25px;
    padding: 3px 10px;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-item {
    position: relative;
    padding: 0;
    margin: 0 2px;
}

.menu-item > a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding: 8px 15px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.menu-item > a:hover {
    color: #c5a47e;
    background: rgba(255, 255, 255, 0.1);
}

.menu-item-has-children > a {
    padding-left: 28px;
}

.menu-item-has-children > a i {
    font-size: 10px;
    margin-right: 4px;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.menu-item-has-children:hover > a i {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(24, 41, 74, 0.97);
    backdrop-filter: blur(8px);
    min-width: 220px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

.sub-menu li {
    list-style: none;
}

.sub-menu li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sub-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #c5a47e;
}

.mobile-menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    border: 1px solid rgba(197, 164, 126, 0.3);
    background: rgba(44, 44, 44, 0.95);
    color: #c5a47e;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn i.fa-bars {
    display: inline-block;
}
.mobile-menu-btn i.fa-times {
    display: none;
}
.mobile-menu-btn.active i.fa-bars {
    display: none;
}
.mobile-menu-btn.active i.fa-times {
    display: inline-block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    transition: all 0.3s ease;
    padding: 60px 0 20px;
    overflow-y: auto;
    border-left: 1px solid rgba(197, 164, 126, 0.2);
}

.mobile-menu.active {
    right: 0;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    font-size: 22px;
    color: #c5a47e;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

/* Services Page Specific Styles */
.services-page {
    padding-top: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 30px;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 38px;
    align-items: stretch;
}

.service-section {
    background: rgba(44, 44, 44, 0.97);
    border-radius: 20px;
    padding: 48px 32px 40px 32px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1.5px solid #c5a47e;
    transition: box-shadow 0.35s, border-color 0.35s, transform 0.35s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 370px;
}
.service-section:hover {
    box-shadow: 0 12px 40px 0 rgba(197,164,126,0.18), 0 2px 24px rgba(0,0,0,0.25);
    border-color: #e0cfa3;
    transform: translateY(-7px) scale(1.025);
}
.service-header {
    background: none;
    color: #fff;
    padding: 0;
    display: block;
    border-bottom: none;
    margin-bottom: 0;
}
.service-header h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 22px;
    margin-top: 0;
    letter-spacing: 1.2px;
    line-height: 1.25;
    font-family: 'Cairo', sans-serif;
}
.service-icon {
    font-size: 4.2rem;
    color: #c5a47e;
    margin-bottom: 28px;
    margin-top: 0;
    transition: text-shadow 0.35s, color 0.35s;
    filter: drop-shadow(0 2px 8px rgba(197,164,126,0.08));
}
.service-section:hover .service-icon {
    color: #e0cfa3;
    text-shadow: 0 0 16px #c5a47e, 0 2px 8px #e0cfa3;
}
.service-body {
    padding: 0;
}
.service-text {
    margin-bottom: 30px;
}
.service-intro {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 18px;
    font-weight: 500;
    line-height: 1.6;
}
.service-text p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1.08rem;
}
.service-steps {
    background: rgba(44, 44, 44, 0.85);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid rgba(197, 164, 126, 0.08);
}
.service-steps h3 {
    color: #c5a47e;
    margin-bottom: 18px;
    font-size: 1.2rem;
    font-weight: 600;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.step-item {
    background: rgba(44, 44, 44, 0.95);
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid rgba(197, 164, 126, 0.06);
    transition: all 0.3s ease;
}
.step-item h4 {
    color: #c5a47e;
    margin-bottom: 10px;
    font-size: 1.08rem;
    font-weight: 600;
}
.step-item p {
    color: #e0e0e0;
    font-size: 0.98rem;
    margin-bottom: 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 28px;
}
.process-item {
    background: rgba(44, 44, 44, 0.85);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid rgba(197, 164, 126, 0.06);
    transition: all 0.3s ease;
}
.process-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    border-color: rgba(197, 164, 126, 0.18);
}
.process-icon {
    font-size: 2.2rem;
    color: #c5a47e;
    margin-bottom: 12px;
}
.process-item h4 {
    color: #c5a47e;
    margin-bottom: 8px;
    font-size: 1.08rem;
    font-weight: 600;
}
.process-item p {
    color: #e0e0e0;
    font-size: 0.98rem;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .sections-grid {
        grid-template-columns: 1fr;
    }
    .service-section {
        min-height: 320px;
        padding: 36px 12px 28px 12px;
    }
    .service-section h2, .service-header h2 {
        font-size: 1.7rem;
    }
    .service-section p, .service-section .service-intro, .service-section .service-text, .service-section .step-item p, .service-section .process-item p {
        font-size: 1.08rem;
    }
    .service-icon {
        font-size: 2.8rem;
    }
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    right: auto !important;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border-radius: 30px;
    background: rgba(197, 164, 126, 0.1);
    border: 1px solid rgba(197, 164, 126, 0.15);
    transition: all 0.3s ease;
    z-index: 1002;
}

html[lang="en"] .language-switcher {
    left: 15px !important;
    right: auto !important;
}

.lang-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    padding: 5px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.lang-link.active {
    background: rgba(197, 164, 126, 0.2);
    color: #c5a47e;
}

.lang-link:hover:not(.active) {
    color: #c5a47e;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo {
        position: relative;
        top: 0;
        right: 0;
        height: 60px;
        margin-right: 60px;
    }

    .logo img {
        height: 100%;
        width: auto;
    }

    .services-page {
        padding: 100px 20px 40px;
    }

    .service-header {
        padding: 20px;
    }

    .service-header h2 {
        font-size: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-body {
        padding: 25px;
    }

    .service-intro {
        font-size: 1.1rem;
    }

    .steps-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .language-switcher {
        left: 15px !important;
        right: auto !important;
        top: 50%;
        transform: translateY(-50%);
        padding: 3px;
        margin: 0;
        z-index: 1002;
    }
    html[lang="en"] .language-switcher {
        left: 15px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        left: 12px !important;
        right: auto !important;
        padding: 2px;
    }
    html[lang="en"] .language-switcher {
        left: 12px !important;
        right: auto !important;
    }
}

.service-section p, .service-section .service-intro, .service-section .service-text, .service-section .step-item p, .service-section .process-item p {
    color: #e0e0e0;
    line-height: 1.9;
    margin-bottom: 0;
    font-size: 1.35rem;
    margin-top: 0;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

.service-section h3 {
    color: #c5a47e;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 26px;
    margin-top: 28px;
    text-align: center;
    letter-spacing: 1.2px;
    font-family: 'Cairo', sans-serif;
}
.service-section h4 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 18px;
    text-align: center;
    letter-spacing: 0.3px;
}
.service-section .step-item p, .service-section .process-item p {
    font-size: 1.28rem;
    font-weight: 500;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
} 