/* إعادة تعيين الأنماط الافتراضية */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* تنسيق الهيدر */
.header {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(211, 156, 89, 0.8) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
    box-shadow: 0 4px 30px rgba(211, 157, 89, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(211, 157, 89, 0.2);
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    position: relative;
}

/* تنسيق اللوجو */
.logo {
    height: 85px;
    position: absolute;
    right: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(211, 157, 89, 0.2));
}

.logo:hover {
    transform: scale(1.05) translateY(-3px);
    filter: drop-shadow(0 8px 15px rgba(211, 157, 89, 0.3));
}

.logo img {
    height: 100%;
    width: auto;
}

/* تنسيق القائمة */
.nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-right: 150px;
    margin-top: 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #d39d59;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.5px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #d39d59;
    box-shadow: 0 2px 8px rgba(211, 157, 89, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(211, 157, 89, 0.1), rgba(211, 157, 89, 0.05));
    border-radius: 8px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active,
.nav-links a.active {
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(211, 157, 89, 0.2);
    border-color: #d39d59;
    background: #d39d59;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.nav-links a:hover::before,
.nav-links a:focus::before,
.nav-links a:active::before,
.nav-links a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a i {
    margin-left: 8px;
}

/* زر القائمة للشاشات الصغيرة */
.mobile-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    left: 25px;
    color: #d39d59;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #d39d59;
    box-shadow: 0 2px 8px rgba(211, 157, 89, 0.1);
    z-index: 1001;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
}

.mobile-menu:hover {
    background: #d39d59;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(211, 157, 89, 0.2);
    border-color: #d39d59;
}

/* تجاوب مع الشاشات الصغيرة */
@media screen and (max-width: 768px) {
    .nav {
        margin-right: 0;
        margin-top: 0;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        height: auto;
        min-height: fit-content;
        width: 300px;
        padding: 80px 0 20px;
        flex-direction: column;
        text-align: center;
        background-color: #d39d59 !important;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        gap: 2px;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        z-index: 999;
        border-radius: 0 0 0 20px;
    }

    .nav-links.active {
        display: flex;
        right: 0;
        opacity: 1;
    }

    .nav-links a {
        background: white;
        color: #d39d59;
        border: none;
        margin: 5px 15px;
        width: calc(100% - 30px);
        padding: 12px;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

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

    .language-switch {
        display: none;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 42px;
        left: 20px;
        z-index: 1002;
        width: 45px;
        height: 45px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid #d39d59;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(211, 157, 89, 0.1);
    }

    .mobile-menu i {
        font-size: 22px;
        color: #d39d59;
        transition: all 0.3s ease;
    }

    .mobile-menu:hover {
        background: #d39d59;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(211, 157, 89, 0.2);
    }

    .mobile-menu:hover i {
        color: #ffffff;
    }

    .mobile-menu.active {
        background: #d39d59;
        transform: rotate(180deg);
    }

    .mobile-menu.active i {
        color: #ffffff;
        transform: rotate(180deg);
    }

    .mobile-lang-switch {
        display: block;
    }
}

/* تجاوب مع الشاشات الصغيرة جداً */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        padding: 70px 10px 10px;
    }

    .nav-links a {
        margin: 2px 10px;
        padding: 10px 20px;
        font-size: 15px;
    }

    .mobile-menu {
        width: 40px;
        height: 40px;
        top: 38px;
        left: 15px;
    }

    .mobile-menu i {
        font-size: 20px;
    }
}

/* تنسيق زر اللغة */
.language-switch {
    position: static;
    margin-right: auto;
    margin-left: 0;
}

.mobile-lang-switch {
    display: none;
}

.lang-btn {
    text-decoration: none;
    color: #d39d59;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.5px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #d39d59;
    box-shadow: 0 2px 8px rgba(211, 157, 89, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    justify-content: center;
}

.lang-btn i {
    font-size: 18px;
    transition: all 0.4s ease;
}

.lang-btn:hover,
.lang-btn:focus,
.lang-btn:active {
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(211, 157, 89, 0.2);
    border-color: #d39d59;
    background: #d39d59;
    letter-spacing: 1px;
    transform: translateY(-2px);
}

.lang-btn:hover i,
.lang-btn:focus i,
.lang-btn:active i {
    transform: rotate(360deg);
}

@media screen and (max-width: 768px) {
    .language-switch {
        display: none;
    }

    .mobile-lang-switch {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 95px;
        right: 0;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%,
            rgba(211, 157, 89, 0.05) 50%,
            rgba(255, 255, 255, 0.98) 100%
        );
        width: 100%;
        padding: 15px;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 4px 25px rgba(211, 157, 89, 0.15);
        backdrop-filter: blur(10px);
        gap: 5px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-lang-switch .lang-btn {
        width: 100%;
        margin: 5px 0;
    }
}

.nav-links a.lang-btn {
    display: none;
}

@media screen and (max-width: 768px) {
    .nav-links a.lang-btn {
        display: flex;
        width: calc(100% - 30px);
        gap: 5px;
    }

    .language-switch {
        display: none;
    }
}

/* تنسيق السلايدر */
.slider-section {
    margin-top: 100px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.slider {
    width: 100%;
    position: relative;
    height: 600px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.slide-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 40px;
    background: linear-gradient(0deg, 
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    color: white;
    border-radius: 0 0 15px 15px;
    text-align: right;
}

.slide-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #d39d59;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slide-btn:hover {
    background: white;
    color: #d39d59;
    border-color: #d39d59;
    transform: translateY(-2px);
}

/* أزرار التنقل */
.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #d39d59;
    transition: all 0.3s ease;
    border: 2px solid #d39d59;
    z-index: 2;
}

.prev-btn {
    right: 20px;
}

.next-btn {
    left: 20px;
}

.slider-nav button:hover {
    background: #d39d59;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* نقاط التنقل */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #d39d59;
}

.dot.active {
    background: #d39d59;
    transform: scale(1.2);
}

/* تجاوب السلايدر مع الشاشات */
@media screen and (max-width: 1024px) {
    .slider {
        height: 500px;
    }

    .slide-content h2 {
        font-size: 2em;
    }

    .slide-content p {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 768px) {
    .slider {
        height: 400px;
    }

    .slide-content {
        padding: 30px;
    }

    .slide-content h2 {
        font-size: 1.8em;
    }

    .slide-content p {
        font-size: 1em;
    }

    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .slider {
        height: 300px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

    .slide-btn {
        padding: 8px 20px;
        font-size: 0.9em;
    }

    .slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* تنسيق قسم من نحن */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(211, 156, 89, 0.05) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211, 157, 89, 0.1) 0%, rgba(211, 157, 89, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(211, 157, 89, 0.1) 0%, rgba(211, 157, 89, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-main-title {
    font-size: 2.2em;
    color: #d39d59;
    margin: 15px 0 10px;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.about-main-intro {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.section-title {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: #d39d59;
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: #d39d59;
    border-radius: 2px;
}

.section-divider::before {
    right: -60px;
}

.section-divider::after {
    left: -60px;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.about-image-container {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.about-images-slider {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.about-prev-btn,
.about-next-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #d39d59;
    transition: all 0.3s ease;
    border: 2px solid #d39d59;
    pointer-events: auto;
}

.about-prev-btn {
    right: 10px;
}

.about-next-btn {
    left: 10px;
}

.about-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.about-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #d39d59;
}

.about-dot.active {
    background: #d39d59;
    transform: scale(1.2);
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-slide.active {
    opacity: 1;
    z-index: 2;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image,
.about-image-secondary,
.about-image-tertiary {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
}

.about-image-secondary {
    margin-right: 30px;
    margin-top: -50px;
    z-index: 1;
}

.about-image-tertiary {
    margin-right: 60px;
    margin-top: -30px;
    z-index: 0;
    align-self: flex-end;
}

.about-image:hover,
.about-image-secondary:hover,
.about-image-tertiary:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(211, 157, 89, 0.2);
}

.about-image img,
.about-image-secondary img,
.about-image-tertiary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.about-image:hover img,
.about-image-secondary:hover img,
.about-image-tertiary:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(211, 157, 89, 0.2), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.about-slide:hover .image-overlay {
    opacity: 1;
}

/* شارة الخبرة على الصورة */
.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(211, 157, 89, 0.95);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.badge-number {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.8em;
    margin-top: 3px;
}

.about-text-container {
    flex: 1;
    padding: 0;
}

.about-text {
    position: relative;
}

.about-text h3 {
    font-size: 2.2em;
    color: #d39d59;
    margin-bottom: 15px;
    margin-top: -15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 60px;
    height: 3px;
    background: #d39d59;
    border-radius: 2px;
}

.about-intro {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.about-paragraph {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

.about-paragraph:hover {
    background: rgba(211, 157, 89, 0.05);
    transform: translateX(-5px);
}

.paragraph-icon {
    width: 50px;
    height: 50px;
    background: rgba(211, 157, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.paragraph-icon i {
    color: #d39d59;
    font-size: 1.2em;
}

.about-paragraph:hover .paragraph-icon {
    background: #d39d59;
    transform: rotate(360deg);
}

.about-paragraph:hover .paragraph-icon i {
    color: white;
}

.paragraph-content {
    flex: 1;
}

.paragraph-content h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.paragraph-content p {
    font-size: 1em;
    line-height: 1.7;
    color: #666;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(211, 157, 89, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(211, 157, 89, 0.1);
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(-5px);
}

.feature i {
    color: #d39d59;
    font-size: 1.2em;
}

.feature span {
    font-size: 1em;
    color: #444;
    font-weight: 600;
}

/* تنسيق أزرار الدعوة للعمل */
.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #d39d59;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(211, 157, 89, 0.2);
    position: relative;
    overflow: hidden;
}

.about-btn-outline {
    background: transparent;
    color: #d39d59;
    border: 2px solid #d39d59;
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.about-btn:hover {
    background: white;
    color: #d39d59;
    border-color: #d39d59;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 157, 89, 0.3);
}

.about-btn-outline:hover {
    background: #d39d59;
    color: white;
}

.about-btn:hover::before {
    transform: translateX(100%);
}

/* تنسيق إحصائيات من نحن */
.about-stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.about-stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 157, 89, 0.05), rgba(211, 157, 89, 0.02));
    border-radius: 15px;
    z-index: -1;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(211, 157, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-stat:hover .stat-icon {
    background: #d39d59;
    transform: rotate(360deg);
}

.stat-icon i {
    color: #d39d59;
    font-size: 1.5em;
    transition: all 0.3s ease;
}

.about-stat:hover .stat-icon i {
    color: white;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8em;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stat-text {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

/* تجاوب قسم من نحن مع الشاشات */
@media screen and (max-width: 1024px) {
    .about-content {
        gap: 40px;
    }
    
    .about-text h3 {
        font-size: 2em;
    }
    
    .about-intro {
        font-size: 1em;
    }
    
    .paragraph-content h4 {
        font-size: 1.1em;
    }
    
    .about-stats-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .about-stat {
        flex: 1 0 calc(50% - 20px);
        justify-content: center;
    }
    
    .about-images-slider {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    .about-images-slider {
        height: 300px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .about-paragraph {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .paragraph-icon {
        margin-bottom: 10px;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .feature {
        justify-content: center;
    }
    
    .about-cta {
        justify-content: center;
    }
    
    .about-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-stat {
        flex: 1 0 100%;
    }
}

@media screen and (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .about-text h3 {
        font-size: 1.6em;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    
    .about-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-btn {
        width: 100%;
        text-align: center;
    }
    
    .image-badge {
        padding: 8px 12px;
    }
    
    .badge-number {
        font-size: 1.3em;
    }
    
    .badge-text {
        font-size: 0.7em;
    }
    
    .about-images-slider {
        height: 250px;
    }
}

.our-values {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    padding: 0 20px;
}

.value-item {
    flex: 1;
    padding: 25px;
    background: rgba(211, 157, 89, 0.05);
    border-radius: 12px;
    text-align: right;
}

.value-item h3 {
    color: #d39d59;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.value-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 50px;
    height: 2px;
    background: #d39d59;
}

.value-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1em;
}

@media screen and (max-width: 768px) {
    .our-values {
        flex-direction: column;
        gap: 20px;
    }
}

/* قسم المشاريع */
.projects-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(211, 156, 89, 0.05) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.section-intro {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 20px auto 50px;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(211, 157, 89, 0.2);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    color: white;
    font-size: 0.9em;
    background: rgba(211, 157, 89, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.project-btn {
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    background: transparent;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    display: inline-block;
}

.project-btn:hover {
    background: white;
    color: #d39d59;
    transform: translateY(-2px);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 600;
}

.project-info p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.projects-cta {
    text-align: center;
    margin-top: 50px;
}

.main-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #d39d59;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1.1em;
}

.main-btn:hover {
    background: white;
    color: #d39d59;
    border-color: #d39d59;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 157, 89, 0.2);
}

/* تجاوب قسم المشاريع مع الشاشات */
@media screen and (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .projects-section {
        padding: 80px 0;
    }
    
    .section-intro {
        font-size: 1em;
        padding: 0 20px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .project-image {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .projects-section {
        padding: 60px 0;
    }
    
    .project-info h3 {
        font-size: 1.2em;
    }
    
    .project-info p {
        font-size: 0.9em;
    }
    
    .main-btn {
        padding: 12px 30px;
        font-size: 1em;
    }
}

/* النافذة المنبثقة */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-modal {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
    background: #d39d59;
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
    text-align: right;
}

.modal-category {
    color: white;
    font-size: 0.9em;
    background: #d39d59;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.modal-title {
    font-size: 1.8em;
    color: #333;
    margin: 0;
}

.modal-body {
    padding: 30px;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
    display: flex;
    gap: 30px;
}

.modal-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section h3 {
    color: #d39d59;
    font-size: 1.3em;
    margin-bottom: 15px;
    position: relative;
    padding-right: 15px;
}

.detail-section h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #d39d59;
    border-radius: 2px;
}

.modal-description {
    color: #666;
    line-height: 1.8;
    font-size: 1.1em;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features li {
    color: #555;
    padding: 10px 30px 10px 0;
    position: relative;
    font-size: 1em;
}

.modal-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #d39d59;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.project-metadata {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.metadata-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.metadata-item i {
    color: #d39d59;
    font-size: 1.2em;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* تجاوب النافذة المنبثقة مع الشاشات */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
        margin: 20px;
    }

    .modal-body {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        overflow-y: auto;
    }

    .modal-image {
        flex: none;
        width: 100%;
        height: 250px;
        margin: 0 auto;
    }

    .modal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .modal-details {
        width: 100%;
    }

    .project-metadata {
        flex-direction: column;
        gap: 10px;
    }

    .metadata-item {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 480px) {
    .modal-content {
        margin: 10px;
    }

    .modal-header {
        padding: 15px;
    }

    .modal-body {
        padding: 15px;
    }

    .modal-image {
        height: 200px;
    }

    .modal-title {
        font-size: 1.3em;
    }

    .modal-category {
        font-size: 0.8em;
        padding: 4px 12px;
    }

    .detail-section h3 {
        font-size: 1.1em;
    }

    .modal-description {
        font-size: 0.9em;
    }

    .modal-features li {
        font-size: 0.9em;
        padding: 8px 25px 8px 0;
    }

    .metadata-item {
        font-size: 0.9em;
    }

    .close-modal {
        width: 35px;
        height: 35px;
        font-size: 24px;
        left: 10px;
        top: 10px;
    }
}

/* تحسين الأداء على الشاشات الصغيرة */
@media screen and (max-height: 600px) {
    .modal-content {
        max-height: 95vh;
    }

    .modal-body {
        max-height: calc(95vh - 150px);
    }

    .modal-image {
        height: 180px;
    }
}

/* قسم الخدمات */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(211, 156, 89, 0.05) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(211, 157, 89, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(211, 157, 89, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d39d59, #e6b17e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d39d59 0%, #e6b17e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 30px;
    color: #fff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d39d59, #e6b17e);
    transition: width 0.3s ease;
}

.service-card:hover .service-content h3::after {
    width: 100px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #555;
    margin-bottom: 10px;
    padding-right: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #d39d59;
    font-weight: bold;
}

/* تحسينات للشاشات المتوسطة */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 25px;
    }

    .service-content h3 {
        font-size: 22px;
    }
}

/* تحسينات للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-features li {
        font-size: 14px;
    }
}

/* قسم شركاؤنا */
.partners-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(211, 156, 89, 0.05) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211, 157, 89, 0.1) 0%, rgba(211, 157, 89, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(211, 157, 89, 0.1) 0%, rgba(211, 157, 89, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(211, 157, 89, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(211, 157, 89, 0.2);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d39d59, #e6b17e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .partner-logo {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 480px) {
    .partner-logo {
        width: 80px;
        height: 80px;
    }
}

.partner-info h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.partner-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d39d59, #e6b17e);
    transition: width 0.3s ease;
}

.partner-card:hover .partner-info h3::after {
    width: 80px;
}

.partner-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.partner-tag {
    background: rgba(211, 157, 89, 0.1);
    color: #d39d59;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-tag {
    background: #d39d59;
    color: white;
    transform: translateY(-3px);
}

.partners-cta {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(211, 157, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.partners-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d39d59, #e6b17e);
}

.partners-cta h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.partners-cta h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 60px;
    height: 3px;
    background: #d39d59;
    border-radius: 2px;
}

.partners-cta p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 25px;
}

.partner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #d39d59;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(211, 157, 89, 0.2);
    position: relative;
    overflow: hidden;
}

.partner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.partner-btn:hover {
    background: white;
    color: #d39d59;
    border-color: #d39d59;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 157, 89, 0.3);
}

.partner-btn:hover::before {
    transform: translateX(100%);
}

.partners-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.partner-stat:hover {
    transform: translateY(-5px);
}

.partner-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(211, 157, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-stat:hover .stat-icon {
    background: #d39d59;
    transform: rotate(360deg);
}

.partner-stat .stat-icon i {
    color: #d39d59;
    font-size: 24px;
    transition: all 0.3s ease;
}

.partner-stat:hover .stat-icon i {
    color: white;
}

.partner-stat .stat-info {
    display: flex;
    flex-direction: column;
}

.partner-stat .stat-number {
    font-size: 1.8em;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.partner-stat .stat-text {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

/* تجاوب قسم شركاؤنا مع الشاشات */
@media screen and (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partners-cta {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .partners-section {
        padding: 80px 0;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .partner-card {
        padding: 25px;
    }
    
    .partner-logo {
        width: 70px;
        height: 70px;
    }
    
    .partner-logo i {
        font-size: 30px;
    }
    
    .partner-info h3 {
        font-size: 1.2em;
    }
    
    .partners-cta {
        padding: 25px;
        margin: 40px 0;
    }
    
    .partners-cta h3 {
        font-size: 1.5em;
    }
    
    .partners-cta p {
        font-size: 1em;
    }
    
    .partners-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partner-card {
        padding: 20px;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
    }
    
    .partner-logo i {
        font-size: 25px;
    }
    
    .partner-info h3 {
        font-size: 1.1em;
    }
    
    .partner-info p {
        font-size: 0.9em;
    }
    
    .partner-tag {
        font-size: 0.75em;
        padding: 4px 10px;
    }
    
    .partners-cta {
        padding: 20px;
        margin: 30px 0;
    }
    
    .partners-cta h3 {
        font-size: 1.3em;
    }
    
    .partners-cta p {
        font-size: 0.9em;
    }
    
    .partner-btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    
    .partner-stat .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .partner-stat .stat-icon i {
        font-size: 20px;
    }
    
    .partner-stat .stat-number {
        font-size: 1.5em;
    }
}

/* قسم اتصل بنا */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(211, 156, 89, 0.05) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211, 157, 89, 0.1) 0%, rgba(211, 157, 89, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(211, 157, 89, 0.1) 0%, rgba(211, 157, 89, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(211, 157, 89, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d39d59 0%, #e6b17e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: rotateY(360deg);
}

.contact-icon i {
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.contact-details h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 5px;
}

.contact-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: #d39d59;
    transition: width 0.3s ease;
}

.contact-card:hover .contact-details h3::after {
    width: 50px;
}

.contact-details p {
    color: #d39d59;
    font-size: 0.95em;
    line-height: 1.5;
}

.contact-link {
    color: #d39d59;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.contact-link:hover {
    color: #c08d49;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: #d39d59;
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(211, 157, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d39d59, #e6b17e);
}

.contact-form-container h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: #d39d59;
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.95em;
    color: #555;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95em;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d39d59;
    box-shadow: 0 0 0 3px rgba(211, 157, 89, 0.1);
}

.submit-btn {
    background: #d39d59;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Cairo', sans-serif;
}

.submit-btn:hover {
    background: #c08d49;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 157, 89, 0.2);
}

.contact-map {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(211, 157, 89, 0.1);
}

/* تجاوب قسم اتصل بنا مع الشاشات */
@media screen and (max-width: 1024px) {
    .contact-content {
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .contact-details h3 {
        font-size: 1.1em;
    }
    
    .contact-details p {
        font-size: 0.9em;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-form-container h3 {
        font-size: 1.3em;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9em;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}

/* تنسيق الفوتر */
.footer {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%,
        rgba(211, 156, 89, 0.05) 50%,
        rgba(255, 255, 255, 0.98) 100%
    );
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(211, 157, 89, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211, 157, 89, 0.1) 0%, rgba(211, 157, 89, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(211, 157, 89, 0.1) 0%, rgba(211, 157, 89, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 15px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(211, 157, 89, 0.2));
    transition: all 0.3s ease;
}

.footer-description {
    color: #666;
    line-height: 1.8;
    font-size: 0.95em;
    margin-top: -10px;
}

@media screen and (max-width: 768px) {
    .footer-logo {
        max-width: 100px;
        margin-top: -35px;
        margin-bottom: 12px;
    }
    
    .footer-description {
        margin-top: -8px;
    }
}

@media screen and (max-width: 480px) {
    .footer-logo {
        max-width: 90px;
        margin-top: -30px;
        margin-bottom: 10px;
    }
    
    .footer-description {
        margin-top: -5px;
    }
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d39d59;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid #d39d59;
}

.social-link:hover {
    background: #d39d59;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 157, 89, 0.2);
}

.footer-title {
    color: #333;
    font-size: 1.3em;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: #d39d59;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding-right: 20px;
    position: relative;
}

.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: #d39d59;
    font-size: 0.8em;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d39d59;
    transform: translateX(-5px);
}

.footer-links a:hover::before {
    transform: translateX(-5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
}

.footer-contact li i {
    color: #d39d59;
    font-size: 1.2em;
    width: 25px;
    text-align: center;
}

.footer-contact li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact li a:hover {
    color: #d39d59;
}

.footer-bottom {
    background: rgba(211, 157, 89, 0.05);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(211, 157, 89, 0.1);
}

.copyright {
    color: #666;
    font-size: 0.9em;
}

/* تجاوب الفوتر مع الشاشات */
@media screen and (max-width: 1024px) {
    .footer-content {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }

    .footer-logo {
        max-width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .footer-top {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-title {
        font-size: 1.2em;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .footer-logo {
        max-width: 90px;
    }
}

.partner-website-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: #d39d59;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-size: 14px;
    gap: 8px;
}

.partner-website-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.partner-website-btn:hover {
    background-color: #e6b17e;
    transform: translateY(-2px);
}

.partner-website-btn:hover i {
    transform: translateX(2px);
}

@media screen and (max-width: 768px) {
    .partner-website-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .partner-website-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
}

.partners-scroll-container {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    position: relative;
}

.partners-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.partners-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.partners-scroll-container::-webkit-scrollbar-thumb {
    background: #d39d59;
    border-radius: 4px;
}

.partners-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #e6b17e;
}

.partners-grid {
    display: flex;
    gap: 30px;
    padding: 20px;
    min-width: max-content;
}

.scroll-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d39d59;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-btn i {
    font-size: 18px;
}

.scroll-btn:hover {
    background-color: #e6b17e;
    transform: scale(1.1);
}

.prev-btn i {
    transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
    .partners-grid {
        gap: 20px;
        padding: 15px;
    }
    
    .scroll-btn {
        width: 35px;
        height: 35px;
    }
    
    .scroll-btn i {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .partners-grid {
        gap: 15px;
        padding: 10px;
    }
    
    .scroll-btn {
        width: 30px;
        height: 30px;
    }
    
    .scroll-btn i {
        font-size: 14px;
    }
} 