* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

.header {
    background-color: #781d1d;
    box-shadow: 0 4px 30px rgba(120, 29, 29, 0.6);
    padding: 0.15rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, #781d1d, #8a2323, #b33a3a, #8a2323, #781d1d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    width: 120px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo:hover {
    transform: scale(1.05);
}

.logo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.logo:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.3));
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-right: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 3rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.nav-links::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links:hover::before {
    opacity: 1;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.6rem 1.8rem;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-menu {
    display: none;
}

.language-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.desktop-only {
    display: block;
}

.mobile-language {
    display: none;
}

@media (max-width: 768px) {
    .header {
        padding: 0.2rem 5%;
        background: linear-gradient(135deg, #781d1d, #8a2323, #b33a3a, #8a2323, #781d1d);
        background-size: 400% 400%;
        animation: gradientBG 8s ease infinite;
    }

    .logo {
        width: 80px;
    }

    .logo img {
        filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
    }

    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 1002;
        cursor: pointer;
        position: relative;
    }

    .mobile-menu i {
        font-size: 1.2rem;
        color: #ffffff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
    }

    .mobile-menu .close-icon {
        opacity: 0;
    }

    .mobile-menu .menu-icon {
        opacity: 1;
    }

    .mobile-menu.active .menu-icon {
        opacity: 0;
    }

    .mobile-menu.active .close-icon {
        opacity: 1;
    }

    .nav {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(120, 29, 29, 0.98), rgba(139, 35, 35, 0.98));
        padding: 1.5rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        z-index: 1001;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0.5rem;
        background: transparent;
        border: none;
        box-shadow: none;
        height: auto;
        justify-content: flex-start;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    }

    .nav.active .nav-links {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a,
    .nav-links .language-btn {
        font-size: 1.1rem;
        padding: 0.8rem 1.8rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        width: 100%;
        display: block;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
        margin: 0;
        text-decoration: none;
        color: #ffffff;
        box-shadow: none;
    }

    .nav.active .nav-links a,
    .nav.active .nav-links .language-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li:nth-child(1) a,
    .nav-links li:nth-child(1) .language-btn { transition-delay: 0.3s; }
    .nav-links li:nth-child(2) a,
    .nav-links li:nth-child(2) .language-btn { transition-delay: 0.4s; }
    .nav-links li:nth-child(3) a,
    .nav-links li:nth-child(3) .language-btn { transition-delay: 0.5s; }
    .nav-links li:nth-child(4) a,
    .nav-links li:nth-child(4) .language-btn { transition-delay: 0.6s; }
    .nav-links li:nth-child(5) a,
    .nav-links li:nth-child(5) .language-btn { transition-delay: 0.7s; }

    .mobile-language {
        display: block;
        width: 100%;
    }

    .desktop-only {
        display: none;
    }

    .language-btn {
        margin: 0;
        border: none;
        box-shadow: none;
    }
}

@media screen and (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-language {
        display: block;
    }
}

/* تنسيقات السلايدر */
.slider-section {
    margin-top: 90px;
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    overflow: hidden;
    background: linear-gradient(135deg, #781d1d, #8a2323);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    opacity: 0;
    transform: translate(-50%, -30%);
    transition: all 0.5s ease 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn.primary {
    background: #781d1d;
    color: white;
    border: 2px solid #781d1d;
}

.btn.primary:hover {
    background: #8a2323;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(120, 29, 29, 0.3);
}

.btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* تعديلات للشاشات الصغيرة */
@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .slide-content p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .slide-buttons {
        gap: 1rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

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

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

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

    .btn {
        width: 100%;
        max-width: 250px;
    }
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.5s ease;
}

.slide.active img {
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    right: 20px;
}

.slider-btn.next {
    left: 20px;
}

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

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

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

/* تنسيقات قسم من نحن */
.about-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

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

.section-title {
    text-align: center;
    color: #781d1d;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #781d1d, #8a2323);
    border-radius: 3px;
}

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

.about-text {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-header {
    margin-bottom: 2rem;
}

.about-header h3 {
    color: #781d1d;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-right: 1rem;
}

.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #781d1d, #8a2323);
    border-radius: 2px;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    min-height: 400px;
}

.image-wrapper {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #781d1d;
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(120, 29, 29, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.experience-badge i {
    font-size: 2rem;
}

.experience-badge span {
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-header h3 {
        font-size: 1.8rem;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 1rem;
    }

    .experience-badge i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .about-header h3 {
        font-size: 1.5rem;
    }

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

/* تنسيقات قسم المهارات */
.skills-section {
    margin: 2rem auto;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
}

.skills-section h4 {
    color: #781d1d;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 1rem;
}

.skills-section h4::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(to bottom, #781d1d, #8a2323);
    border-radius: 2px;
}

.skill-bars {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.skill-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.skill-info span:first-child {
    color: #444;
    font-weight: 600;
    font-size: 1.1rem;
}

.skill-info .percentage {
    color: #781d1d;
    font-weight: 700;
    font-size: 1.1rem;
}

.skill-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #781d1d, #8a2323);
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

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

/* تعديلات للشاشات الصغيرة */
@media (max-width: 768px) {
    .skills-section {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }

    .skills-section h4 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .skill-info span:first-child,
    .skill-info .percentage {
        font-size: 1rem;
    }

    .skill-bar {
        height: 6px;
    }
}

@media (max-width: 480px) {
    .skills-section {
        padding: 1rem;
    }

    .skills-section h4 {
        font-size: 1.2rem;
    }

    .skill-info span:first-child,
    .skill-info .percentage {
        font-size: 0.9rem;
    }
}

.about-description {
    margin-bottom: 2rem;
}

.main-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: auto;
}

.vision, .mission {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vision:hover, .mission:hover {
    transform: translateY(-5px);
}

.vision h4, .mission h4 {
    color: #781d1d;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vision h4 i, .mission h4 i {
    font-size: 1.5rem;
    color: #781d1d;
}

.vision p, .mission p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(120, 29, 29, 0.15);
}

.feature i {
    font-size: 2rem;
    color: #781d1d;
    background: rgba(120, 29, 29, 0.1);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature:hover i {
    background: #781d1d;
    color: white;
}

.feature-content h5 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
}

.stat {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat i {
    font-size: 2.5rem;
    color: #781d1d;
    margin-bottom: 0.5rem;
}

.stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #781d1d;
    line-height: 1;
}

.stat .label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-description {
        font-size: 1.1rem;
    }

    .vision h4, .mission h4 {
        font-size: 1.2rem;
    }

    .vision p, .mission p {
        font-size: 1rem;
    }

    .vision, .mission {
        padding: 1.5rem;
    }

    .feature {
        padding: 1.2rem;
        gap: 1rem;
    }

    .feature i {
        font-size: 1.5rem;
        padding: 0.8rem;
    }

    .feature-content h5 {
        font-size: 1.1rem;
    }

    .stat {
        padding: 1.5rem;
    }

    .stat i {
        font-size: 2rem;
    }

    .stat .number {
        font-size: 2rem;
    }

    .stat .label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .stat {
        padding: 1.2rem;
    }

    .vision h4, .mission h4 {
        font-size: 1.1rem;
    }

    .vision p, .mission p {
        font-size: 0.95rem;
    }

    .vision, .mission {
        padding: 1.2rem;
    }
}

.vision-mission,
.about-features,
.skills-section,
.about-stats {
    grid-column: 1 / -1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.company-features {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 29, 29, 0.1), rgba(139, 35, 35, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(120, 29, 29, 0.15);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item i {
    font-size: 2.5rem;
    color: #781d1d;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.feature-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #781d1d, #8a2323);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.feature-item:hover h4::after {
    width: 80px;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .company-features {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .feature-item {
        flex: 1 1 calc(50% - 1rem);
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .company-features {
        margin-top: 3rem;
        padding: 1rem;
    }

    .feature-item {
        flex: 1 1 100%;
        padding: 1.2rem;
    }

    .feature-item i {
        font-size: 2rem;
    }

    .feature-item h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .company-features {
        margin-top: 2rem;
        padding: 0.8rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-item i {
        font-size: 1.8rem;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
}

.about-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.products-btn {
    background: #781d1d;
    color: white;
    border: 2px solid #781d1d;
}

.products-btn:hover {
    background: #8a2323;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(120, 29, 29, 0.3);
}

.contact-btn {
    background: white;
    color: #781d1d;
    border: 2px solid #781d1d;
}

.contact-btn:hover {
    background: #781d1d;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(120, 29, 29, 0.3);
}

.contact-btn:hover i {
    color: white;
}

@media (max-width: 768px) {
    .about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .about-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-buttons {
        padding: 1rem;
    }

    .about-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .about-btn i {
        font-size: 1.3rem;
    }
}

/* تنسيقات قسم المنتجات */
.products-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

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

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(120, 29, 29, 0.2);
}

.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-content {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.product-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.product-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #781d1d, #8a2323);
    border-radius: 3px;
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-details p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.product-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.product-details ul li {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    padding-right: 1.5rem;
}

.product-details ul li i {
    color: #781d1d;
    font-size: 1rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

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

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

.view-details {
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.view-details:hover {
    background: white;
    color: #781d1d;
}

.product-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #781d1d;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.product-btn:hover {
    background: #8a2323;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(120, 29, 29, 0.3);
}

.product-btn:hover::before {
    transform: translateX(0);
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 4rem 5%;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image {
        height: 220px;
    }

    .product-content {
        padding: 1.5rem;
    }

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

    .product-details ul li {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
        padding-right: 1.3rem;
    }

    .product-details ul li i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 3rem 5%;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 1.2rem;
    }

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

    .product-details p {
        font-size: 0.9rem;
    }

    .product-details ul li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        padding-right: 1.2rem;
    }

    .product-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* تنسيقات زر التواصل في قسم المنتجات */
.products-contact {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    padding: 2rem;
}

.contact-products-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: #781d1d;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(120, 29, 29, 0.2);
}

.contact-products-btn i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-products-btn:hover {
    background: #8a2323;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(120, 29, 29, 0.3);
}

.contact-products-btn:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .products-contact {
        margin-top: 3rem;
        padding: 1.5rem;
    }

    .contact-products-btn {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .products-contact {
        margin-top: 2rem;
        padding: 1rem;
    }

    .contact-products-btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .contact-products-btn i {
        font-size: 1.3rem;
    }
}

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

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    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="%23781d1d" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

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

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(120, 29, 29, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 29, 29, 0.1), rgba(139, 35, 35, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(120, 29, 29, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #781d1d, #8a2323);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #8a2323, #781d1d);
}

.service-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.2rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-content h3 {
    color: #781d1d;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #781d1d, #8a2323);
    border-radius: 3px;
    transition: all 0.4s ease;
}

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

.service-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-content p {
    color: #555;
}

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

.service-content ul li {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    padding-right: 1.5rem;
    transition: all 0.3s ease;
}

.service-content ul li:hover {
    color: #781d1d;
    transform: translateX(-5px);
}

.service-content ul li i {
    color: #781d1d;
    font-size: 1rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.service-card:hover .service-content ul li i {
    transform: translateY(-50%) scale(1.2);
    color: #8a2323;
}

.services-contact {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    padding: 2rem;
    position: relative;
}

.services-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #781d1d, #8a2323);
    border-radius: 3px;
}

.contact-services-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: #781d1d;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(120, 29, 29, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.contact-services-btn i {
    font-size: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-services-btn:hover {
    background: #8a2323;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(120, 29, 29, 0.3);
}

.contact-services-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 5%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

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

    .service-icon i {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 5%;
    }

    .service-card {
        padding: 1.2rem;
    }

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

    .service-icon i {
        font-size: 1.5rem;
    }

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

    .service-content p {
        font-size: 0.9rem;
    }

    .service-content ul li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        padding-right: 1.2rem;
    }

    .services-contact {
        margin-top: 2rem;
        padding: 1rem;
    }

    .contact-services-btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .contact-services-btn i {
        font-size: 1.3rem;
    }
}

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    height: fit-content;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(120, 29, 29, 0.1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(120, 29, 29, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #781d1d, #8a2323);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-link {
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-link:last-child {
    margin-bottom: 0;
}

.contact-link:hover {
    color: #781d1d;
    transform: translateX(-5px);
}

.contact-link p {
    margin: 0;
}

.info-card:hover .contact-link {
    color: #781d1d;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    flex: 1;
}

.form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background: #f8f9fa;
    text-align: right;
    direction: rtl;
}

.form-group i {
    position: absolute;
    right: 1rem;
    color: #781d1d;
    font-size: 1.2rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group textarea + i {
    top: 1.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #781d1d;
    box-shadow: 0 0 0 3px rgba(120, 29, 29, 0.1);
    outline: none;
}

.form-group:hover i {
    transform: translateY(-50%) scale(1.1);
}

.form-group textarea:focus + i,
.form-group input:focus + i {
    color: #8a2323;
}

.submit-btn {
    background: linear-gradient(135deg, #781d1d, #8a2323);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(120, 29, 29, 0.2);
}

.submit-btn i {
    transition: all 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(-5px);
}

.contact-map {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #781d1d;
}

.map-fallback i {
    font-size: 3rem;
}

.map-fallback p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

#map {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 5%;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .info-card {
        padding: 1.5rem;
    }

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

    .info-icon i {
        font-size: 1.2rem;
    }

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

    .info-card p {
        font-size: 0.95rem;
    }

    .contact-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 5%;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 2.5rem 0.8rem 0.8rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .contact-map {
        height: 250px;
    }

    .map-fallback i {
        font-size: 3rem;
    }

    .map-fallback p {
        font-size: 1rem;
    }
}

/* تنسيقات الفوتر */
.footer {
    background: linear-gradient(135deg, #781d1d, #8a2323);
    color: white;
    padding: 4rem 5% 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    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="%23ffffff" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, transparent);
    border-radius: 3px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: #781d1d;
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

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

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.contact-info li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    flex: 1;
}

.contact-info li a:hover {
    color: white;
    transform: translateX(-5px);
}

.contact-info li:hover {
    transform: translateX(-5px);
}

.contact-info li:hover a {
    color: white;
}

.contact-info i {
    font-size: 1.2rem;
    color: white;
    margin-top: 0.2rem;
    min-width: 20px;
    text-align: center;
}

.contact-info span {
    line-height: 1.6;
    flex: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 5% 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-logo {
        width: 120px;
    }

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

@media (max-width: 480px) {
    .footer {
        padding: 2rem 5% 0;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

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

    .footer-bottom p {
        font-size: 0.8rem;
    }
} 