/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav__brand {
    flex-shrink: 0;
}

.nav__logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5aa0;
    margin: 0;
}

.nav__list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav__link:hover,
.nav__link:focus {
    color: #2c5aa0;
}

.nav__link[aria-current="page"] {
    color: #2c5aa0;
}

.nav__link[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #2c5aa0;
}

.nav__link--language {
    background: #2c5aa0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav__link--language:hover,
.nav__link--language:focus {
    background: #1e3d6f;
    color: white;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle-line {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main {
    margin-top: 70px;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 6rem 0;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    text-align: center;
    
    
}
    

.hero__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons */
.cta__button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.cta__button--primary {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.cta__button--primary:hover,
.cta__button--primary:focus {
    background: #1e3d6f;
    border-color: #1e3d6f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.cta__button--secondary {
    background: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.cta__button--secondary:hover,
.cta__button--secondary:focus {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.cta__button--full {
    width: 100%;
}

/* Services Section */
/* خدماتنا */
.services {
    background: #f8f9fa;
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card__icon {
    margin-bottom: 1.5rem;
}

.service-card__img {
    width: 330px;
    height: 330px;
    border-radius: 50%;
}

.service-card__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-card__description {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card__link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card__link:hover,
.service-card__link:focus {
    color: #1e3d6f;
    text-decoration: underline;
}

/* About Section */
.about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__content .section__header {
    text-align: left;
    margin-bottom: 2rem;
}

.features__grid {
    display: grid;
    gap: 1.5rem;
}

.feature {
    padding: 1rem 0;
}

.feature__title {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.feature__description {
    color: #666;
}

.about__image {
    text-align: center;
}

.about__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-list__item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-list__question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5aa0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-list__question:hover,
.faq-list__question:focus {
    background: #f8f9fa;
}

.faq-list__question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-list__question[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-list__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-list__answer[aria-hidden="false"] {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-list__answer p {
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item-title {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.contact__item-link {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact__item-link:hover,
.contact__item-link:focus {
    color: #2c5aa0;
}

.contact__item-address,
.contact__item-text {
    color: #666;
    font-style: normal;
    line-height: 1.6;
}

/* Contact Form */
.contact__form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.contact__form-title {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__title {
    color: #3498db;
    margin-bottom: 1rem;
}

.footer__subtitle {
    color: #ecf0f1;
    margin-bottom: 1rem;
}

.footer__text {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer__list {
    list-style: none;
}

.footer__item {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover,
.footer__link:focus {
    color: #3498db;
}

.footer__bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    color: #bdc3c7;
    margin: 0;
}

.footer__languages {
    display: flex;
    gap: 1rem;
}

.footer__language {
    color: #bdc3c7;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer__language:hover,
.footer__language:focus {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.footer__language--active {
    color: #3498db;
    background: rgba(52, 152, 219, 0.2);
}

/* RTL Support for Arabic */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav__list {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero__container {
    grid-template-columns: 1fr 1fr;
}

[dir="rtl"] .about__container {
    grid-template-columns: 1fr 1fr;
}

[dir="rtl"] .contact__content {
    grid-template-columns: 1fr 1fr;
}

[dir="rtl"] .faq-list__question::after {
    right: auto;
    left: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav__list--active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle--active .nav__toggle-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav__toggle--active .nav__toggle-line:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle--active .nav__toggle-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__content .section__header {
        text-align: center;
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__actions {
        justify-content: center;
    }

    .cta__button {
        min-width: 200px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

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

    .cta__button {
        width: 100%;
        max-width: 300px;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .nav__link:focus,
    .cta__button:focus,
    .form__input:focus,
    .form__select:focus,
    .form__textarea:focus {
        outline: 3px solid #000;
        outline-offset: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav__toggle,
    .cta__button,
    .contact__form {
        display: none;
    }

    .main {
        margin-top: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .section__title {
        font-size: 18pt;
    }
}

/* Additional Styles for Category and Testimonials Pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
    margin-top: 70px;
}

.page-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-header__title {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.page-header__subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb__list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb__item {
    color: #666;
}

.breadcrumb__item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb__link {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb__link:hover {
    color: #1e3d6f;
}

.breadcrumb__item--current {
    color: #333;
    font-weight: 500;
}

/* Categories Grid */
.categories {
    padding: 4rem 0;
}

.categories__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-card--featured {
    border: 2px solid #2c5aa0;
    position: relative;
}

.category-card--featured::before {
    content: 'Popular';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #2c5aa0;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-card--urgent {
    border: 2px solid #e74c3c;
}

.category-card__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.category-card__icon {
    margin-bottom: 1rem;
}

.category-card__img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.category-card__title {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.category-card__subtitle {
    color: #666;
    font-size: 0.9rem;
}

.category-card__content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.category-card__description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-card__features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.category-card__feature {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.category-card__feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.category-card__pricing {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.category-card__price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.category-card__price-note {
    font-size: 0.9rem;
    color: #666;
}

.category-card__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta__button--urgent {
    background: #e74c3c;
    border-color: #e74c3c;
}

.cta__button--urgent:hover {
    background: #c0392b;
    border-color: #c0392b;
}

.cta__button--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Service Areas */
.service-areas {
    background: #f8f9fa;
    padding: 4rem 0;
}

.service-areas__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-areas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-area {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-area__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-area__list {
    list-style: none;
}

.service-area__item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.service-area__item::before {
    content: '📍';
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: #f8f9fa;
}

.stats__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.stats__title {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-card__number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-card__label {
    color: #666;
    font-weight: 500;
}

/* Testimonials */
.testimonials-featured {
    padding: 4rem 0;
}

.testimonials-featured__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.testimonials-grid {
    background: #f8f9fa;
    padding: 4rem 0;
}

.testimonials-grid__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-grid__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card--featured {
    border: 2px solid #2c5aa0;
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.testimonial-card__avatar {
    flex-shrink: 0;
}

.testimonial-card__img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-card--featured .testimonial-card__img {
    width: 80px;
    height: 80px;
}

.testimonial-card__name {
    color: #2c5aa0;
    margin-bottom: 0.25rem;
}

.testimonial-card__title {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-card__rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
}

.star--filled {
    color: #ffc107;
}

.testimonial-card__quote {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2c5aa0;
    padding-left: 1rem;
}

.testimonial-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.testimonial-card__service {
    background: #e3f2fd;
    color: #2c5aa0;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Review Form */
.review-form-section {
    padding: 4rem 0;
}

.review-form-section__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.review-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.review-form__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.rating-input__radio {
    display: none;
}

.rating-input__label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input__radio:checked ~ .rating-input__label,
.rating-input__label:hover,
.rating-input__label:hover ~ .rating-input__label {
    color: #ffc107;
}

/* Logo Link */
.nav__logo-link {
    text-decoration: none;
    color: inherit;
}

.nav__logo-link:hover {
    color: inherit;
}

/* RTL Adjustments for Arabic Pages */
[dir="rtl"] .breadcrumb__item:not(:last-child)::after {
    content: '<';
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="rtl"] .category-card__feature {
    padding-left: 0;
    padding-right: 1.5rem;
}

[dir="rtl"] .category-card__feature::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .service-area__item {
    padding-left: 0;
    padding-right: 1.5rem;
}

[dir="rtl"] .service-area__item::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .testimonial-card__quote {
    border-left: none;
    border-right: 4px solid #2c5aa0;
    padding-left: 0;
    padding-right: 1rem;
}

[dir="rtl"] .rating-input {
    flex-direction: row;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .page-header__title {
        font-size: 2rem;
    }
    
    .categories__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-featured__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid__content {
        grid-template-columns: 1fr;
    }
    
    .category-card__actions {
        flex-direction: column;
    }
    
    .cta-section__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta__button--large {
        width: 100%;
        max-width: 300px;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-form__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stat-card__number {
        font-size: 2rem;
    }
    
    .cta-section__title {
        font-size: 2rem;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
}

/* Services Page Styles */

/* Services Overview */
.services-overview {
    padding: 4rem 0;
}

.services-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.services-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.overview-card__icon {
    margin-bottom: 1.5rem;
}

.overview-card__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.overview-card__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.overview-card__description {
    color: #666;
    line-height: 1.6;
}

/* Detailed Services */
.services-detailed {
    background: #f8f9fa;
    padding: 4rem 0;
}

.services-detailed__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-detail {
    background: white;
    border-radius: 12px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-detail__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail__content {
    direction: ltr;
}

.service-detail:nth-child(odd) .service-detail__content {
    direction: ltr;
}

[dir="rtl"] .service-detail:nth-child(even) .service-detail__content {
    direction: rtl;
}

[dir="rtl"] .service-detail:nth-child(odd) .service-detail__content {
    direction: rtl;
}

.service-detail__text {
    padding: 3rem;
}

.service-detail__title {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-detail__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-detail__features,
.service-detail__types,
.service-detail__benefits {
    margin-bottom: 2rem;
}

.service-detail__features-title,
.service-detail__types-title,
.service-detail__benefits-title {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-detail__features-list {
    list-style: none;
}

.service-detail__feature {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.service-detail__feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

[dir="rtl"] .service-detail__feature {
    padding-left: 0;
    padding-right: 1.5rem;
}

[dir="rtl"] .service-detail__feature::before {
    left: auto;
    right: 0;
}

.service-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-type {
    background: #e3f2fd;
    color: #2c5aa0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-detail__image {
    height: 100%;
    min-height: 400px;
}

.service-detail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail__pricing {
    background: #f8f9fa;
    padding: 2rem 3rem;
    border-top: 1px solid #e9ecef;
}

.pricing-card {
    text-align: center;
}

.pricing-card__title {
    color: #333;
    margin-bottom: 1rem;
}

.pricing-card__price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.pricing-card__note {
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-card--emergency {
    border: 2px solid #e74c3c;
    border-radius: 8px;
    padding: 1rem;
    background: #fff5f5;
}

.pricing-card--emergency .pricing-card__price {
    color: #e74c3c;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.benefit-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.benefit-item strong {
    display: block;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.benefit-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Service Coverage */
.service-coverage {
    padding: 4rem 0;
}

.service-coverage__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coverage-map__img {
    width: 100%;
    border-radius: 12px;
}

.coverage-details__title {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.coverage-zones {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.coverage-zone__title {
    color: #333;
    margin-bottom: 1rem;
}

.coverage-zone__list {
    list-style: none;
}

.coverage-zone__list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.coverage-zone__list li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

[dir="rtl"] .coverage-zone__list li {
    padding-left: 0;
    padding-right: 1.5rem;
}

[dir="rtl"] .coverage-zone__list li::before {
    left: auto;
    right: 0;
}

.coverage-contact {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.coverage-contact__text {
    margin-bottom: 1rem;
    color: #666;
}

/* Brands Section */
.brands-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.brands-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.brand-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-2px);
}

.brand-item__logo {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.brand-item:hover .brand-item__logo {
    opacity: 1;
}

.brands-note {
    color: #666;
    font-style: italic;
}

.brands-note__link {
    color: #2c5aa0;
    text-decoration: none;
}

.brands-note__link:hover {
    text-decoration: underline;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .service-detail__content {
        grid-template-columns: 1fr;
    }
    
    .service-detail__text {
        padding: 2rem;
    }
    
    .service-detail__pricing {
        padding: 2rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-types {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-detail__title {
        font-size: 1.5rem;
    }
    
    .pricing-card__price {
        font-size: 1.5rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */

/* Contact Methods */
.contact-methods {
    padding: 4rem 0;
}

.contact-methods__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-methods__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card--emergency {
    border: 2px solid #e74c3c;
}

.contact-card--emergency::before {
    content: 'Emergency';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

[dir="rtl"] .contact-card--emergency::before {
    content: 'طوارئ';
}

.contact-card__icon {
    margin-bottom: 1.5rem;
}

.contact-card__img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.contact-card__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-card__description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-card__details {
    margin-bottom: 2rem;
}

.contact-card__link {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card__link--primary {
    color: #2c5aa0;
}

.contact-card__link--primary:hover {
    color: #1e3d6f;
}

.contact-card__link--emergency {
    color: #e74c3c;
}

.contact-card__link--emergency:hover {
    color: #c0392b;
}

.contact-card__hours {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-card__address {
    font-style: normal;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.contact-form-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-form-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-section__form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.contact-info__title {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.contact-info__list {
    list-style: none;
}

.contact-info__item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info__item:last-child {
    border-bottom: none;
}

.contact-info__item strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-info__item span {
    color: #666;
    font-size: 0.9rem;
}

/* Form Elements */
.form__radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form__radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.form__radio {
    margin-right: 0.5rem;
    accent-color: #2c5aa0;
}

[dir="rtl"] .form__radio {
    margin-right: 0;
    margin-left: 0.5rem;
}

.form__radio-text {
    color: #666;
    font-weight: 500;
}

.form__radio-label:hover .form__radio-text {
    color: #2c5aa0;
}

.form__checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    line-height: 1.5;
}

.form__checkbox {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    accent-color: #2c5aa0;
    flex-shrink: 0;
}

[dir="rtl"] .form__checkbox {
    margin-right: 0;
    margin-left: 0.75rem;
}

.form__checkbox-text {
    color: #666;
    font-size: 0.9rem;
}

.form__link {
    color: #2c5aa0;
    text-decoration: none;
}

.form__link:hover {
    text-decoration: underline;
}

.cta__button--full {
    width: 100%;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
}

.map-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder__img {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 300px;
}

[dir="rtl"] .map-overlay {
    left: auto;
    right: 2rem;
}

.map-overlay__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.map-overlay__address {
    font-style: normal;
    color: #666;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.contact-faq {
    background: #f8f9fa;
    padding: 4rem 0;
}

.contact-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item__question {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-item__answer {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-methods__grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section__form {
        padding: 2rem;
    }
    
    .contact-form__grid {
        grid-template-columns: 1fr;
    }
    
    .form__radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card__link {
        font-size: 1.1rem;
    }
    
    .contact-form-section__form {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}
