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

:root {
    --primary-color: #ea8a30;
    --secondary-color: #f3b462b9;
    --accent-color: #f7d6a3;
    --text-color: #333;
    --background-color: #f9f4eb;
    --white-color: #ffffff;
    --shadow-primary: 0 10px 25px rgba(234, 138, 48, 0.3);
    --shadow-secondary: 0 5px 15px rgba(243, 181, 98, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --border-radius: 12px;
}

body {
    font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    padding-top: 80px; /* Accommodate fixed header */
}

/* Enhanced Header Styles */
.main-header {
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    transform: none !important;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.main-header.scrolled {
    background: linear-gradient(135deg, #3a3e41 0%, #e8a44d 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(72, 76, 79, 0.2);
    transform: translateY(-2px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    position: relative;
}

/* Logo Styling */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
    margin-left: 0;
    background: transparent !important;
    padding: 0;
    margin: 0;
    pointer-events: none; /* منع تأثيرات التحويم */
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: transparent !important;
    padding: 0;
    margin: 0;
    pointer-events: none; /* منع تأثيرات التحويم */
}

.logo a:focus {
    outline: none;
    background: transparent;
}

.logo-image {
    width: auto;
    height: 80px;
    transition: none; /* إزالة التأثير الانتقالي */
    background: transparent !important; /* إجبار الشفافية */
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    pointer-events: none; /* منع تأثيرات التحويم */
}

.logo-image:hover {
    transform: none; /* إزالة تأثير الدوران */
    background: transparent;
    border: none;
    box-shadow: none;
    border-color: transparent;
}

.logo-image:focus {
    outline: none !important;
}

/* Navigation Styling */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-right: 0;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.nav-links li {
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--white-color);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    border-radius: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 1 !important;
    transform: none !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-links a:hover::after {
    width: 300px;
    height: 300px;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--white-color);
    letter-spacing: 1px;
}

.nav-links a.active {
    background-color: var(--white-color);
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-shadow: none;
    border-color: var(--white-color);
    transform: translateY(-3px) !important;
}

    .nav-links a {
        display: flex;
    align-items: center; /* محاذاة عمودية للعناصر */
    gap: 8px; /* المسافة بين الأيقونة والنص */
    }
    
    .nav-links a i {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: normal;
    transform: translateY(1px); /* تعديل موضع الأيقونة بشكل دقيق */
}

.nav-links a:hover i {
    transform: translateY(-2px) rotate(5deg);
}

/* إضافة تأثيرات جديدة للأزرار */
.nav-links a::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--white-color));
    background-size: 400% 400%;
    z-index: -1;
    opacity: 0;
    transition: all 0.6s ease;
}

.nav-links a:hover::before {
    opacity: 0.8;
    animation: gradient-animation 3s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* تعديلات للشاشات المتوسطة والكبيرة */
@media screen and (min-width: 993px) {
    .nav-links {
        margin-top: 8px;
    }
    
    .nav-links a {
        transform: translateY(3px) !important;
    }
    
    .nav-links li:hover {
        transform: scale(1.05);
    }
    
    .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 8px;
        height: 8px;
        background: var(--white-color);
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--white-color);
    margin: 2px 0;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2px);
    width: 24px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -2px);
    width: 24px;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .main-header {
        border-radius: 0;
    }
    
    .header-container {
        padding: 12px 15px;
    }

    .logo-image {
        max-height: 65px;
        border-width: 3px;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 80px);
        background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 998;
        gap: 10px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-bottom-left-radius: var(--border-radius);
        border-bottom-right-radius: var(--border-radius);
        will-change: transform;
        visibility: hidden;
        margin-right: 0;
    }

    .nav-links.active {
        transform: translateY(0);
        animation: menu-reveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        visibility: visible;
    }

    @keyframes menu-reveal {
        0% {
            transform: translateY(-5%);
            opacity: 0.8;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(72, 76, 79, 0.95) 0%, rgba(243, 180, 98, 0.95) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: -1;
        border-bottom-left-radius: var(--border-radius);
        border-bottom-right-radius: var(--border-radius);
    }

    .nav-links li {
        margin: 5px 0;
        width: 90%;
        max-width: 450px;
        text-align: center;
        transform: translateZ(0);
    }
    
    .nav-links a {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        padding: 15px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 1.1rem;
        will-change: transform, box-shadow;
    }
    
    .nav-links a:hover,
    .nav-links a:focus {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links a.active {
        background-color: var(--white-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }
    
    .nav-links a i {
        margin-left: 8px;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }
    
    .nav-links a:hover i {
        transform: translateY(-2px);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .main-header.menu-open {
        box-shadow: 0 8px 25px rgba(234, 138, 48, 0.4);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

@media screen and (max-width: 576px) {
    body {
        padding-top: 65px;
    }

    .header-container {
        padding: 10px 15px;
    }

    .logo-image {
        max-height: 65px;
        border-width: 3px;
    }

    .logo a {
        font-size: 1.4rem;
    }

    .nav-links {
        max-height: calc(100vh - 65px);
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px;
    }

    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
        padding: 6px;
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
    }

    .mobile-menu-toggle.active span:nth-child(1),
    .mobile-menu-toggle.active span:nth-child(3) {
        width: 20px;
    }
}

@media screen and (max-width: 375px) {
    .logo-image {
        max-height: 60px;
    }
    
    .nav-links {
        max-height: calc(100vh - 60px);
    }
}

/* تعديلات للشاشات متناهية الصغر */
@media screen and (max-width: 320px) {
    .logo-image {
        max-height: 55px;
        margin-left: 8px;
    }
    
    .header-container {
        padding: 8px 10px;
    }
    
    .mobile-menu-toggle {
        width: 28px;
    }
}

/* Accessibility and Print Styles */
@media print {
    .main-header, .mobile-menu-toggle {
        display: none;
    }
}

/* Smooth Scroll and Focus Styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Scroll Bar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* زر تغيير اللغة */
.language-switcher {
    position: relative;
    margin-right: auto;
    margin-left: 15px;
    z-index: 5;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: var(--white-color);
    padding: 8px 15px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.lang-btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.lang-btn .fa-chevron-down {
    font-size: 0.8rem;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 15px rgba(0, 0, 0, 0.15),
        0 0 15px rgba(234, 138, 48, 0.3);
}

.lang-btn:hover .fa-globe {
    transform: rotate(20deg);
}

.lang-btn:hover .fa-chevron-down {
    transform: translateY(2px);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    list-style: none;
    padding: 5px;
    border: 1px solid rgba(234, 138, 48, 0.2);
}

.language-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    margin: 0;
    padding: 0;
}

.lang-dropdown a {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 2px 0;
}

.lang-dropdown a:hover {
    background: rgba(234, 138, 48, 0.1);
    color: var(--primary-color);
    transform: translateX(-5px);
}

.lang-dropdown a.active {
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
}

/* تعديل الهيدر للشاشات المتوسطة والصغيرة */
@media screen and (max-width: 992px) {
    .language-switcher {
        margin-left: 10px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .lang-btn span {
        display: none;
    }
    
    .lang-btn .fa-chevron-down {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .language-switcher {
        margin-left: 8px;
    }
    
    .lang-btn {
        padding: 5px 10px;
    }
}

/* إشعار تغيير اللغة */
.language-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    font-weight: 600;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: slide-up 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slide-up {
    0% {
        transform: translate(-50%, 30px);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* تنسيق قسم السلايدر */
.hero-slider {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(72, 76, 79, 0.05) 0%, rgba(243, 180, 98, 0.05) 100%);
}

.slider-container {
    padding-top: 80px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.slide {
    display: none;
    animation: fadeOut 0.5s ease;
}

.slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.slide-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.slide-text {
    flex: 1;
    padding: 20px;
}

.slide-text h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.slide-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    border-radius: 2px;
}

.slide-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.slide-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 400px;
    transition: transform 0.5s ease;
}

.slide:hover .slide-image img {
    transform: scale(1.05);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* أزرار التحكم */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(72, 76, 79, 0.1);
}

.slide-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(72, 76, 79, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* تحريك السلايدر */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

/* تجاوب مع الشاشات */
@media screen and (max-width: 992px) {
    .slide-content {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .slide-text {
        text-align: center;
    }

    .slide-text h2::after {
        right: 50%;
        transform: translateX(50%);
    }

    .slide-image img {
        max-height: 300px;
    }
}

@media screen and (max-width: 576px) {
    .slide-text h2 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    .slide-image img {
        max-height: 250px;
    }
}

/* تحسينات جديدة للسلايدر */
.slide-badge {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(135deg, rgba(72, 76, 79, 0.1) 0%, rgba(243, 180, 98, 0.1) 100%);
    border-radius: 20px;
    color: #484c4f;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border: 1px solid rgba(72, 76, 79, 0.1);
}

.slide-text h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    border: none;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #484c4f;
    color: #484c4f;
}

.cta-button.secondary:hover {
    background: rgba(72, 76, 79, 0.1);
}

.stats-group {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(72, 76, 79, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #484c4f;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    right: -20px;
}

.card-2 {
    bottom: 20px;
    left: -20px;
}

.floating-card i {
    color: #f3b462;
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* تحسين التجاوب */
@media screen and (max-width: 992px) {
    .slide-text h2 {
        font-size: 2.5rem;
    }

    .stats-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .floating-card {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .slide-text h2 {
        font-size: 2rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .stats-group {
        gap: 20px;
    }
}

/* تحديث تنسيقات قسم من نحن */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

/* ترويسة القسم */
.about-header {
    margin-bottom: 60px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.title-text .subtitle {
    color: #f3b462;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.title-text h2 {
    font-size: 2.5rem;
    color: #484c4f;
    margin: 0;
}

/* محتوى القسم */
.about-content {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    margin-top: 30px;
}

.about-info {
    flex: 1;
}

.about-showcase {
    flex: 1;
}

/* تنسيق البطاقة الرئيسية */
.info-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
}

.info-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* أرقام الخبرة */
.experience-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.exp-item {
    text-align: center;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f3b462;
    line-height: 1;
    margin-bottom: 10px;
}

.exp-item p {
    margin: 0;
    color: #484c4f;
    font-weight: 500;
}

/* شبكة الشهادات */
.certificates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cert-card {
    background: rgba(243, 180, 98, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-icon {
    font-size: 2rem;
    color: #f3b462;
    margin-bottom: 15px;
}

/* قسم العرض */
.showcase-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
}

.quality-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
}

.quality-badge .percentage {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f3b462;
    display: block;
}

/* شبكة المميزات */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

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

.feature-card i {
    font-size: 2rem;
    color: #f3b462;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #484c4f;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* التجاوب مع الشاشات */
@media screen and (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .title-text h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

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

    .experience-numbers {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .showcase-image {
        margin: -20px -20px 30px;
        border-radius: 0;
    }

    .showcase-image img {
        max-height: 300px;
    }

    .quality-badge {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 25px;
    }

    .title-text h2 {
        font-size: 1.8rem;
    }
}

/* تحسينات إضافية للنصوص والمحتوى */
.title-description {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
    max-width: 600px;
}

.info-text {
    margin-bottom: 30px;
}

.main-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #484c4f;
    margin-bottom: 25px;
}

.info-details {
    background: rgba(243, 180, 98, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #484c4f;
}

.features-list i {
    color: #f3b462;
    font-size: 1.2rem;
}

.quality-section {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.quality-description {
    color: #666;
    margin-bottom: 25px;
}

.cert-detail {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.services-overview {
    margin: 40px 0;
}

.feature-details {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    text-align: right;
    font-size: 0.9rem;
    color: #666;
}

.feature-details li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 15px;
}

.feature-details li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: #f3b462;
}

.contact-cta {
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    padding: 30px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.contact-cta h4 {
    color: white;
    margin-bottom: 15px;
}

.contact-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* تحسين التجاوب */
@media screen and (max-width: 992px) {
    .experience-numbers {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .experience-numbers {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-details {
        padding: 20px;
    }
    
    .quality-section {
        padding: 25px;
    }
}

@media screen and (max-width: 576px) {
    .experience-numbers {
        grid-template-columns: 1fr;
    }
    
    .main-description {
        font-size: 1rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
    }
}

/* تعديل ترتيب العناصر في الشاشات الصغيرة */
@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-showcase {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: -1;
    }

    .showcase-image {
        order: -1;
        width: 100%;
        text-align: center;
        padding: 0 15px;
        margin: 20px auto 30px;
    }

    .showcase-image img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 300px;
        margin: 0 auto;
        display: inline-block;
    }

    .services-overview,
    .contact-cta {
        order: 2;
    }
}

/* تحسينات إضافية للشاشات الصغيرة جداً */
@media screen and (max-width: 576px) {
    .showcase-image {
        padding: 0 10px;
    }

    .showcase-image img {
        max-height: 250px;
    }

    .quality-badge {
        padding: 8px 12px;
    }

    .quality-badge .percentage {
        font-size: 1.5rem;
    }
}

/* تنسيق قسم الخدمات */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23f3b462" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(243, 180, 98, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 180, 98, 0.1) 0%, rgba(72, 76, 79, 0.05) 100%);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #484c4f;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #484c4f;
}

.service-features i {
    color: #f3b462;
    font-size: 0.9rem;
}

.services-cta {
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.services-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.services-cta .cta-button {
    background: white;
    color: #484c4f;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

@media screen and (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

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

    .service-card {
        padding: 25px;
    }

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

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

    .services-cta {
        padding: 30px;
    }

    .services-cta h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .service-card {
        padding: 20px;
    }

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

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

    .service-card h3 {
        font-size: 1.2rem;
    }

    .services-cta {
        padding: 25px;
    }

    .services-cta h3 {
        font-size: 1.3rem;
    }
}

/* تنسيق قسم المنتجات */
.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23f3b462" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(243, 180, 98, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(72, 76, 79, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.product-cta {
    background: white;
    color: #484c4f;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-cta {
    transform: translateY(0);
}

.product-cta i {
    font-size: 1.1rem;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.4rem;
    color: #484c4f;
    margin-bottom: 10px;
}

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

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

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #484c4f;
}

.product-features i {
    color: #f3b462;
    font-size: 0.9rem;
}

.products-cta {
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.products-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.products-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.products-cta .cta-button {
    background: white;
    color: #484c4f;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.products-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

@media screen and (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px;
    }

    .products-cta {
        padding: 30px;
    }

    .products-cta h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .product-image {
        height: 180px;
    }

    .product-content h3 {
        font-size: 1.2rem;
    }

    .products-cta {
        padding: 25px;
    }

    .products-cta h3 {
        font-size: 1.3rem;
    }
}

/* تنسيق قسم المشاريع */
.projects-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23f3b462" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(243, 180, 98, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.project-details {
    color: white;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.project-card:hover .project-details {
    transform: translateY(0);
}

.project-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #f3b462;
}

.project-details p {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.4rem;
    color: #484c4f;
    margin-bottom: 10px;
}

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

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

.project-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #484c4f;
}

.project-features i {
    color: #f3b462;
    font-size: 0.9rem;
}

.projects-cta {
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.projects-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.projects-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.projects-cta .cta-button {
    background: white;
    color: #484c4f;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.projects-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

@media screen and (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }

    .project-image {
        height: 250px;
    }

    .project-content {
        padding: 20px;
    }

    .projects-cta {
        padding: 30px;
    }

    .projects-cta h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .project-image {
        height: 200px;
    }

    .project-content h3 {
        font-size: 1.2rem;
    }

    .projects-cta {
        padding: 25px;
    }

    .projects-cta h3 {
        font-size: 1.3rem;
    }
}

/* تنسيق قسم التواصل */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23f3b462" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* تنسيق معلومات التواصل */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(243, 180, 98, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(-5px);
    background: rgba(243, 180, 98, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.info-text h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* تنسيق روابط التواصل الاجتماعي */
.social-links {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.social-links h4 {
    color: #484c4f;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(243, 180, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f3b462;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #f3b462;
    color: white;
    transform: translateY(-3px);
}

/* تنسيق نموذج التواصل */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

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

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

.form-group label {
    color: #484c4f;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid rgba(243, 180, 98, 0.2);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(243, 180, 98, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f3b462;
    background: white;
    box-shadow: 0 0 0 3px rgba(243, 180, 98, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.submit-btn i {
    font-size: 1.1rem;
}

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

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px;
    }

    .info-item {
        padding: 15px;
    }

    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .contact-form {
        padding: 25px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }

    .submit-btn {
        padding: 12px 25px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* تنسيق الفوتر */
.main-footer {
    background: linear-gradient(135deg, #484c4f 0%, #f3b462 100%);
    position: relative;
    padding: 60px 0 0;
    color: white;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

/* معلومات الشركة */
.company-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* روابط سريعة */
.quick-links h3,
.contact-info h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.quick-links h3::after,
.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.quick-links ul,
.contact-info ul {
    list-style: none;
    padding: 0;
}

.quick-links li,
.contact-info li {
    margin-bottom: 10px;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-links a:hover {
    color: white;
    transform: translateX(-3px);
}

.quick-links i {
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.quick-links a:hover i {
    transform: translateX(-2px);
}

/* معلومات التواصل */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-info i {
    font-size: 1rem;
    color: #f3b462;
    background: rgba(255, 255, 255, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.contact-info span {
    line-height: 1.4;
}

/* حقوق النشر */
.footer-bottom {
    text-align: center;  /* تعديل محاذاة النص للمنتصف */
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    display: inline-block;  /* لضمان المحاذاة في المنتصف */
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* تجاوب الفوتر مع الشاشات */
@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .footer-waves svg {
        height: 80px;
    }

    .footer-logo {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .quick-links h3,
    .contact-info h3 {
        font-size: 1rem;
    }

    .contact-info li {
        font-size: 0.85rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(234, 138, 48, 0.1);
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(234, 138, 48, 0.3);
}

.footer-social a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.footer-social a:hover::before {
    transform: scale(2);
}

.footer-social i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* تحسين التجاوب مع الشاشات الصغيرة */
@media screen and (max-width: 576px) {
    .footer-social {
        gap: 0.75rem;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
    }
    
    .footer-social i {
        font-size: 1rem;
    }
}

