/* style.css - النسخة الكاملة مع التحسينات */
:root {
    --primary-blue: #1e88e5;
    --light-blue: #64b5f6;
    --dark-blue: #0d47a1;
    --primary-green: #4caf50;
    --light-green: #81c784;
    --primary-orange: #ff9800;
    --light-orange: #ffb74d;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    z-index: 2001;
    transition: width 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 136, 229, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalFadeIn 0.3s ease;
    transform: scale(0.9);
    transition: var(--transition-slow);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.active {
    transform: scale(1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(0.9);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--primary-blue);
    background-color: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    transition: var(--transition);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
    transform: translateY(-2px);
}

.form-group:hover label {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* خيارات الكمية */
.quantity-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-option {
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quantity-option::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.quantity-option:hover::before {
    right: 100%;
}

.quantity-option:hover,
.quantity-option.active {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    border-color: var(--dark-blue);
    box-shadow: 0 4px 8px rgba(30, 136, 229, 0.3);
}

/* خيارات المقاسات */
.size-options-modal {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.size-option-modal {
    padding: 0.75rem 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 100px;
}

.size-option-modal::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.size-option-modal:hover::before {
    right: 100%;
}

.size-option-modal:hover,
.size-option-modal.active {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    border-color: var(--light-green);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.submit-order-btn,
.submit-contact-btn {
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-order-btn::before,
.submit-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.submit-order-btn:hover::before,
.submit-contact-btn:hover::before {
    right: 100%;
}

.submit-order-btn:hover,
.submit-contact-btn:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* شريط التنقل */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

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

.nav-logo img {
    height: 40px;
    transition: var(--transition);
}

.nav-logo:hover img {
    transform: rotate(5deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

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

.lang-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.lang-btn:hover::before {
    right: 100%;
}

.lang-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition);
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* قسم الهيرو */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-green) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--dark-blue);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cta-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.cta-btn:hover::before {
    right: 100%;
}

.cta-btn:hover {
    background: var(--light-green);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease;
}

.floating-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

@keyframes float {
    0% {
        transform: perspective(1000px) rotateY(-5deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(-5deg) translateY(-15px);
    }
    100% {
        transform: perspective(1000px) rotateY(-5deg) translateY(0);
    }
}

.floating-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    animation: none;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}

.section-title span {
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text p:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* تنسيق مربعات الإحصائيات */
.about-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    perspective: 1000px;
}

.stat {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    animation: float 6s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

/* تأثيرات خلفية متحركة */
.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s ease;
}

.stat:hover::before {
    left: 100%;
}

/* تأثير الرفرفة (Float) */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-15px) rotateY(5deg);
        box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
    }
}

/* تأثيرات عند التحويم (Hover) */
.stat:hover {
    transform: translateY(-20px) scale(1.05) rotateY(10deg);
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.3);
    border: 2px solid rgba(52, 152, 219, 0.3);
    background: linear-gradient(145deg, #ffffff, #e3f2fd);
}

.stat h3 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: transparent;
    background: linear-gradient(45deg, #3498db, #2ecc71, #e74c3c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientFlow 3s ease infinite;
}

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

.stat p {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.stat:hover p {
    color: #2c3e50;
}

/* أيقونة خفيفة داخل كل مربع */
.stat::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    bottom: -20px;
    right: -20px;
    z-index: 1;
    transition: all 0.5s ease;
}

.stat:hover::after {
    transform: scale(1.5);
    background: rgba(52, 152, 219, 0.15);
}

/* تأثيرات دخول المربعات عند التمرير */
.stat {
    opacity: 0;
    transform: translateY(50px) rotateX(20deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stat.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* تحسينات للجوال */
@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .stat {
        flex: 1 1 calc(50% - 20px);
        min-width: 140px;
        max-width: calc(50% - 20px);
        padding: 25px 15px;
        animation: floatMobile 4s ease-in-out infinite;
    }
    
    @keyframes floatMobile {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    .stat h3 {
        font-size: 36px;
    }
    
    .stat:hover {
        transform: translateY(-10px) scale(1.03);
    }
}

@media (max-width: 480px) {
    .stat {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 200px;
        animation: floatMobile 4s ease-in-out infinite;
    }
    
    .about-stats {
        gap: 15px;
    }
}

/* قسم المنتجات */
.products {
    padding: 80px 0;
    background: white;
}

.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
}

.adults-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 152, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
    }
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-green) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-info {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    transition: var(--transition);
}

.product-card:hover .product-name {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.product-description {
    color: #666;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.product-card:hover .product-description {
    color: #555;
}

.product-btn {
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.product-btn:hover::before {
    right: 100%;
}

.product-btn:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* قسم المميزات */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-green) 100%);
    color: white;
}

.features .section-title {
    color: white;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    display: inline-block;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-card:hover h3 {
    transform: translateY(-3px);
}

/* قسم آراء العملاء */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.testimonials .section-title {
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.testimonial-slide::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-slide.active::before {
    opacity: 1;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-slide.active .testimonial-avatar {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    max-width: 600px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    font-family: serif;
}

.testimonial-text::before {
    top: -30px;
    right: -20px;
}

.testimonial-text::after {
    bottom: -50px;
    left: -20px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.testimonial-role {
    opacity: 0.9;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonial-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.testimonials-dots {
    display: flex;
    gap: 1rem;
}

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

.testimonial-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* قسم اتصل بنا */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-green) 100%);
    opacity: 0;
    transition: var(--transition);
}

.contact-card:hover::before {
    opacity: 0.05;
}

.floating-card {
    animation: float 3s ease-in-out infinite;
}

.contact-card:nth-child(2) {
    animation-delay: 0.5s;
}

.contact-card:nth-child(3) {
    animation-delay: 1s;
}

.contact-card:nth-child(4) {
    animation-delay: 1.5s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    color: var(--primary-blue);
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--dark-blue);
}

.contact-card h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-card:hover h3 {
    color: var(--primary-blue);
}

.contact-card p {
    color: #666;
    transition: var(--transition);
}

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

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-green) 100%);
    opacity: 0.03;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
    transform: translateY(-2px);
}

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

.submit-contact-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.submit-contact-btn:hover::before {
    right: 100%;
}

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

.btn-icon {
    transition: transform 0.3s ease;
}

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

/* قسم وسائل التواصل الاجتماعي */
.social-media {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a237e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-media::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.social-media .section-title {
    color: white;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 17px;
    transition: all 0.3s ease;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transition: all 0.4s ease;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.social-icon:hover::after {
    width: 150%;
    height: 150%;
}

.floating-icon {
    animation: float-social 4s ease-in-out infinite;
}

.social-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.social-icon:nth-child(3) {
    animation-delay: 1s;
}

.social-icon:nth-child(4) {
    animation-delay: 1.5s;
}

.social-icon:nth-child(5) {
    animation-delay: 2s;
}

/* ألوان وسائل التواصل الاجتماعي */
.social-icon.facebook {
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.3);
}

.social-icon.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    transform: translateY(-10px) scale(1.1);
    border-color: #1877F2;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.social-icon.instagram {
    color: #E4405F;
    border-color: rgba(228, 64, 95, 0.3);
}

.social-icon.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
    transform: translateY(-10px) scale(1.1);
    border-color: #E4405F;
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.3);
}

.social-icon.tiktok {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
}

.social-icon.tiktok:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-10px) scale(1.1);
    border-color: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icon.snapchat {
    color: #FFFC00;
    border-color: rgba(255, 252, 0, 0.3);
}

.social-icon.snapchat:hover {
    background: rgba(255, 252, 0, 0.1);
    transform: translateY(-10px) scale(1.1);
    border-color: #FFFC00;
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.3);
}

.social-icon.twitter {
    color: #1DA1F2;
    border-color: rgba(29, 161, 242, 0.3);
}

.social-icon.twitter:hover {
    background: rgba(29, 161, 242, 0.1);
    transform: translateY(-10px) scale(1.1);
    border-color: #1DA1F2;
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

.social-icon:hover i {
    transform: scale(1.2) rotate(10deg);
}

.social-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Cairo', sans-serif;
}

.social-icon:hover::before {
    opacity: 1;
    bottom: -50px;
}

@keyframes float-social {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(2deg);
    }
    66% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

/* تأثيرات إضافية */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* تذييل الصفحة */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.footer-logo img {
    height: 40px;
    transition: var(--transition);
}

.footer-logo:hover img {
    transform: rotate(5deg);
}

/* تأثيرات الحركة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 80%;
        height: calc(100vh - 70px);
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1.5rem;
    }
    
    .quantity-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .size-options-modal {
        flex-direction: column;
    }
    
    .size-option-modal {
        min-width: auto;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonial-slide {
        padding: 2rem;
    }
    
    .testimonials-container {
        height: 450px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .testimonial-nav-btn {
        width: 50px;
        height: 50px;
    }
}

/* النسخة الإنجليزية */
body[dir="ltr"] {
    text-align: left;
    font-family: 'Roboto', 'Cairo', sans-serif;
}

body[dir="ltr"] .nav-link::after {
    right: auto;
    left: 0;
}

body[dir="ltr"] .section-title::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

body[dir="ltr"] .hero::before {
    right: auto;
    left: 0;
    transform: scaleX(-1);
}

body[dir="ltr"] .product-btn::before {
    right: auto;
    left: -100%;
}

body[dir="ltr"] .product-btn:hover::before {
    left: 100%;
}

body[dir="ltr"] .floating-image {
    transform: perspective(1000px) rotateY(5deg);
}

body[dir="ltr"] .floating-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

@keyframes float-ltr {
    0% {
        transform: perspective(1000px) rotateY(5deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(5deg) translateY(-15px);
    }
    100% {
        transform: perspective(1000px) rotateY(5deg) translateY(0);
    }
}

body[dir="ltr"] .floating-image {
    animation: float-ltr 3s ease-in-out infinite;
}

body[dir="ltr"] .nav-menu {
    right: auto;
    left: -100%;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

body[dir="ltr"] .nav-menu.active {
    right: auto;
    left: 0;
}

body[dir="ltr"] .close-modal {
    left: auto;
    right: 15px;
}

body[dir="ltr"] .about-text p:hover {
    transform: translateX(-5px);
}

body[dir="ltr"] .product-card:hover .product-name {
    transform: translateX(-5px);
}

body[dir="ltr"] .quantity-option::before {
    right: auto;
    left: -100%;
}

body[dir="ltr"] .quantity-option:hover::before {
    left: 100%;
}

body[dir="ltr"] .size-option-modal::before {
    right: auto;
    left: -100%;
}

body[dir="ltr"] .size-option-modal:hover::before {
    left: 100%;
}

body[dir="ltr"] .lang-btn::before {
    right: auto;
    left: -100%;
}

body[dir="ltr"] .lang-btn:hover::before {
    left: 100%;
}

body[dir="ltr"] .cta-btn::before {
    right: auto;
    left: -100%;
}

body[dir="ltr"] .cta-btn:hover::before {
    left: 100%;
}

body[dir="ltr"] .submit-order-btn::before {
    right: auto;
    left: -100%;
}

body[dir="ltr"] .submit-order-btn:hover::before {
    left: 100%;
}

body[dir="ltr"] .submit-contact-btn::before {
    right: auto;
    left: -100%;
}

body[dir="ltr"] .submit-contact-btn:hover::before {
    left: 100%;
}

body[dir="ltr"] .submit-contact-btn:hover .btn-icon {
    transform: translateX(-5px);
}

body[dir="ltr"] .testimonial-text::before {
    right: auto;
    left: -20px;
}

body[dir="ltr"] .testimonial-text::after {
    left: auto;
    right: -20px;
}

body[dir="ltr"] .contact-card::before {
    right: auto;
    left: 0;
}

body[dir="ltr"] .contact-form-container::before {
    right: auto;
    left: 0;
}

body[dir="ltr"] .social-icon::before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

body[dir="ltr"] .social-media::before {
    right: auto;
    left: 0;
}

body[dir="ltr"] .testimonials::before {
    right: auto;
    left: 0;
}