
/* CSS Reset وتحديد الألوان */
:root {
    --primary-color: #c62828; /* أحمر دافئ مائل للطماطمي */
    --secondary-color: #f5f5dc; /* بيج/كريمي فاتح */
    --accent-color: #2e7d32; /* أخضر هادئ */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    --border-radius: 4px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    direction: rtl;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2rem;
    color: var(--accent-color);
    position: relative;
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    text-align: center;
}

h2.animate {
    opacity: 1;
    transform: translateY(0);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    font-size: 1.1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
}

/* تحسينات للجوال */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    html,
    body {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

section {
    padding: var(--spacing-xl) 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-light {
    background-color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn:hover {
    background-color: #a62828;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.btn i {
    margin-left: 8px;
}

/* دعم LTR للغة الإنجليزية */
html[dir="ltr"] body {
    direction: ltr;
}

html[dir="ltr"] .btn i {
    margin-left: 0;
    margin-right: 8px;
}

html[dir="ltr"] nav li {
    margin-right: 0;
    margin-left: var(--spacing-lg);
}

html[dir="ltr"] .contact-icon {
    margin-left: 0;
    margin-right: var(--spacing-md);
}

html[dir="ltr"] .about-content {
    justify-items: center;
}

html[dir="ltr"] .about-text {
    padding: var(--spacing-xl);
    text-align: center;
    max-width: 100%;
    width: 100%;
    transform: translateX(40px);
}

html[dir="ltr"] .about-text.animate {
    transform: translateX(0);
}

html[dir="ltr"] .about-image {
    transform: translateX(-40px) scale(0.95);
}

html[dir="ltr"] .about-image.animate {
    transform: translateX(0) scale(1);
}

html[dir="ltr"] .contact-item {
    transform: translateX(20px);
}

html[dir="ltr"] .contact-item.animate {
    transform: translateX(0);
}

html[dir="ltr"] .contact-form {
    transform: translateX(-20px);
}

html[dir="ltr"] .contact-form.animate {
    transform: translateX(0);
}

html[dir="ltr"] .mobile-menu {
    right: auto;
    left: 0;
    transform: translateX(-100%);
    border-left: 3px solid var(--primary-color);
    border-right: none;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 0;
}

html[dir="ltr"] .mobile-menu.active {
    transform: translateX(0);
}

html[dir="ltr"] .mobile-menu a::before {
    right: auto;
    left: 0;
}

html[dir="ltr"] .mobile-menu a:hover,
html[dir="ltr"] .mobile-menu a:active {
    padding-right: 1.5rem;
    padding-left: 1.8rem;
}

/* ============================================
   MODERN HEADER DESIGN - PREMIUM STYLE
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
    transition: padding 0.4s ease;
}

header.scrolled .header-container {
    padding: 0.8rem 0;
}

/* Logo Section - Premium Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
}

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

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(198, 40, 40, 0.2));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 12px rgba(198, 40, 40, 0.3));
    transform: rotate(-2deg);
}

.logo h2 {
    font-size: 1.9rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d62839 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo h2::after {
    display: none;
}

/* Navigation - Modern Style */
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

nav li {
    position: relative;
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d62839 100%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    z-index: -1;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

nav a:hover::before {
    opacity: 1;
    transform: scale(1);
}

nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Language Toggle - Premium Button */
.language-toggle {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d62839 100%);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
    position: relative;
    overflow: hidden;
}

.language-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.language-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

.language-toggle:hover::before {
    left: 100%;
}

.language-toggle .lang-text {
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.nav-language {
    margin-right: 0;
    margin-left: var(--spacing-md);
}

.nav-language .language-toggle {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Mobile Menu Button - Modern Design */
.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d62839 100%);
    border: none;
    font-size: 1.3rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.7rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
    position: relative;
    z-index: 10;
}

.mobile-menu-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

.mobile-menu-btn.active {
    transform: rotate(90deg);
}

/* Mobile Language */
.mobile-language {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid rgba(198, 40, 40, 0.15);
    display: flex;
    justify-content: center;
    margin-right: 0;
    position: relative;
    z-index: 1;
}

.mobile-language::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(198, 40, 40, 0.3) 50%, transparent 100%);
}

.mobile-language .language-toggle {
    width: auto;
    min-width: 120px;
    justify-content: center;
}

/* ============================================
   MOBILE MENU - MODERN PREMIUM DESIGN
   ============================================ */

.mobile-menu {
    display: none;
    list-style: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 220, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(198, 40, 40, 0.1);
    z-index: 999;
    padding: calc(var(--spacing-xl) + 20px) var(--spacing-lg) var(--spacing-xl) var(--spacing-lg);
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(198, 40, 40, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.mobile-menu li {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Overlay للقائمة المحمولة */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* قسم البطل */
.hero {
    padding-top: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

/* ============================================
   ABOUT SECTION - MODERN PREMIUM DESIGN
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xl);
    position: relative;
}

html[dir="ltr"] .about-content {
    justify-items: center;
}

html[dir="ltr"] .about-content > * {
    justify-self: center;
}

/* About Text - Modern Card Design */
.about-text {
    padding: var(--spacing-xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 220, 0.5) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(198, 40, 40, 0.1);
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: 0;
}

.about-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(198, 40, 40, 0.1) 100%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
    z-index: 0;
}

html[dir="rtl"] .about-text {
    padding: var(--spacing-xl);
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-text p {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-md);
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 400;
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

.about-text p:first-child {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.about-text p:first-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.about-text p:hover {
    transform: translateX(-5px);
    color: var(--text-dark);
}

/* About Image - Premium Frame Design */
.about-image {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.15;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.about-image:hover::before {
    transform: rotate(2deg) scale(1.05);
    opacity: 0.2;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
    transform: rotate(3deg);
    transition: all 0.3s ease;
}

.about-image:hover::after {
    transform: rotate(-3deg) scale(1.1);
    opacity: 0.15;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(255, 255, 255, 0.8);
    object-fit: contain;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    padding: var(--spacing-md);
}

.about-image:hover img {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 30px 80px rgba(198, 40, 40, 0.2), 0 0 0 4px rgba(198, 40, 40, 0.1);
}

/* Decorative Elements */
.about-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.about-content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   PRODUCTS SECTION - MODERN PREMIUM DESIGN
   ============================================ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    justify-items: center;
    margin-top: var(--spacing-xl);
    position: relative;
}

/* توسيط الكاردات في الصف الأخير - المنتج 7 في العمود 2 */
.products-grid .product-card:nth-child(7) {
    grid-column: 2;
}

/* Product Card - Premium Modern Design */
.product-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 220, 0.3) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(198, 40, 40, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 350px;
    position: relative;
    border: 2px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.05) 0%, rgba(46, 125, 50, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 24px;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(198, 40, 40, 0.2), 0 0 0 1px rgba(198, 40, 40, 0.15);
    border-color: rgba(198, 40, 40, 0.2);
}

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

.product-card:hover::after {
    opacity: 0.1;
}

/* Product Image - Modern Container */
.product-image {
    height: 320px;
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(198, 40, 40, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    padding: var(--spacing-sm);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.product-image i {
    font-size: 4rem;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

/* Product Info - Premium Typography */
.product-info {
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    padding-bottom: var(--spacing-sm);
    transition: color 0.3s ease;
}

.product-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--primary-color);
}

.product-card:hover .product-name::after {
    opacity: 1;
    width: 80px;
}

/* Decorative Elements for Products Section */
#products::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

#products::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

#products .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   COUNTRIES SECTION - MODERN PREMIUM DESIGN
   ============================================ */

.section-description {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
    line-height: 1.8;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    position: relative;
}

/* توسيط الكاردات في الصف الأخير - الدول 7 و 8 و 9 في الأعمدة 1 و 2 و 3 */
.countries-grid .country-card:nth-child(7) {
    grid-column: 1;
}

.countries-grid .country-card:nth-child(8) {
    grid-column: 2;
}

.countries-grid .country-card:nth-child(9) {
    grid-column: 3;
}

/* Country Card - Premium Modern Design */
.country-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 220, 0.3) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(198, 40, 40, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.05) 0%, rgba(46, 125, 50, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 24px;
}

.country-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.country-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.country-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(198, 40, 40, 0.2), 0 0 0 1px rgba(198, 40, 40, 0.15);
    border-color: rgba(198, 40, 40, 0.2);
}

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

.country-card:hover::after {
    opacity: 0.1;
}

/* Country Flag - Premium Frame Design */
.country-flag {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 220, 0.5) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 2px 8px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(198, 40, 40, 0.1);
}

.country-card:hover .country-flag {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(198, 40, 40, 0.2), inset 0 2px 8px rgba(255, 255, 255, 0.9);
    border-color: rgba(198, 40, 40, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 220, 0.7) 100%);
}

.flag-emoji {
    font-size: 4.5rem;
    line-height: 1;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-card:hover .flag-emoji {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(198, 40, 40, 0.2));
}

.country-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    padding-top: var(--spacing-sm);
}

.country-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.country-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.country-card:hover h3::after {
    width: 60px;
}

/* Decorative Elements for Countries Section */
#countries::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

#countries::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

#countries .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   WHY US SECTION - MODERN PREMIUM DESIGN
   ============================================ */

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    position: relative;
}

/* Feature Card - Premium Modern Design */
.feature {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 220, 0.3) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(198, 40, 40, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.05) 0%, rgba(46, 125, 50, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 24px;
}

.feature::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(198, 40, 40, 0.2), 0 0 0 1px rgba(198, 40, 40, 0.15);
    border-color: rgba(198, 40, 40, 0.2);
}

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

.feature:hover::after {
    opacity: 0.1;
}

/* Feature Icon - Premium 3D Design */
.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d62839 100%);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(198, 40, 40, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

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

.feature-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Feature Title */
.feature h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    padding-bottom: var(--spacing-sm);
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.feature:hover h3 {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.feature:hover h3::after {
    width: 60px;
}

/* Feature Description */
.feature p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    margin: 0;
    transition: color 0.3s ease;
}

.feature:hover p {
    color: var(--text-dark);
}

/* Decorative Elements for Why Us Section */
#why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

#why-us::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

#why-us .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTACT SECTION - MODERN PREMIUM DESIGN
   ============================================ */

.contact-container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xl);
    position: relative;
    align-items: start;
    max-width: 100%;
}

/* Contact Info - Premium Grid Design for Desktop */
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    align-items: stretch;
    max-width: 100%;
    width: 100%;
}

.contact-item {
    width: 100%;
    min-width: 0;
}

/* Contact Form - Premium Modern Design */
.contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 220, 0.3) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(198, 40, 40, 0.08);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
    max-width: 100%;
    height: fit-content;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-lg);
    padding: calc(var(--spacing-xl) + var(--spacing-md));
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 220, 0.3) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(198, 40, 40, 0.08);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
    min-height: 240px;
    justify-content: center;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.05) 0%, rgba(46, 125, 50, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 20px;
}

.contact-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.contact-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(198, 40, 40, 0.2), 0 0 0 1px rgba(198, 40, 40, 0.15);
    border-color: rgba(198, 40, 40, 0.2);
}

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

.contact-item:hover::after {
    opacity: 0.1;
}

/* Contact Icon - Premium 3D Design */
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d62839 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(198, 40, 40, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
}

.contact-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Contact Details */
.contact-details {
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-details h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details h4 {
    color: var(--primary-color);
}

.contact-details p {
    color: var(--text-medium);
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: nowrap;
}

.contact-item:hover .contact-details p {
    color: var(--text-dark);
}

/* Contact Form - Premium Modern Design */
.contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 220, 0.3) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(198, 40, 40, 0.08);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
    max-width: 100%;
    height: fit-content;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.03) 0%, rgba(46, 125, 50, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 24px;
}

.contact-form.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-form:hover {
    border-color: rgba(198, 40, 40, 0.2);
    box-shadow: 0 15px 50px rgba(198, 40, 40, 0.15), 0 0 0 1px rgba(198, 40, 40, 0.15);
}

.contact-form:hover::before {
    opacity: 1;
}

/* Form Groups */
.form-group {
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--primary-color);
}

/* Form Controls - Modern Input Design */
.form-control {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(198, 40, 40, 0.15), 0 0 0 3px rgba(198, 40, 40, 0.1);
    background: var(--white);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.form-control:focus::placeholder {
    color: #d1d5db;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: 'Cairo', sans-serif;
}

/* Submit Button Enhancement */
.contact-form .btn {
    width: 100%;
    margin-top: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Decorative Elements for Contact Section */
#contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

#contact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

#contact .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER SECTION - MODERN PREMIUM DESIGN
   ============================================ */

footer {
    background: linear-gradient(180deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-xl);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(198, 40, 40, 0.5) 50%, transparent 100%);
}

footer::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    gap: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-md);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

.footer-logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 4px 12px rgba(198, 40, 40, 0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    filter: drop-shadow(0 6px 16px rgba(198, 40, 40, 0.5));
    transform: rotate(-2deg);
}

.footer-logo h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.footer-logo h2::after {
    display: none;
}

.footer-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-content > p:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(198, 40, 40, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.copyright {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(198, 40, 40, 0.5) 50%, transparent 100%);
}

.copyright p {
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* التجاوب مع الشاشات الصغيرة */

/* شاشات متوسطة (Tablets) */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .about-text {
        padding: var(--spacing-lg);
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .products-grid .product-card:nth-child(7) {
        grid-column: auto;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .feature {
        padding: var(--spacing-lg);
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
}

/* شاشات صغيرة (Mobile Large) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-bottom: var(--spacing-md);
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    /* الهيدر */
    .header-container {
        padding: 0.8rem 0;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo h2 {
        font-size: 1.3rem;
    }
    
    nav ul {
        display: none;
    }
    
    .header-container {
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
    }
    
    nav {
        display: none;
    }
    
    .header-actions {
        order: 2;
        margin-right: auto;
        margin-left: 0;
        gap: 0.5rem;
    }
    
    .language-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        top: 0;
        max-width: 320px;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .mobile-menu li {
        margin: 0.3rem 0;
        padding: 0 var(--spacing-md);
    }
    
    .mobile-menu li:last-child {
        margin-bottom: 0;
    }
    
    .mobile-menu a {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.5);
        margin-bottom: 0.5rem;
    }
    
    .mobile-menu a::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--primary-color) 0%, #d62839 100%);
        border-radius: 0 12px 12px 0;
        transform: scaleX(0);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-menu a::after {
        content: '';
        position: absolute;
        right: 1.5rem;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--primary-color);
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-menu a:hover,
    .mobile-menu a:active {
        background: linear-gradient(135deg, rgba(198, 40, 40, 0.1) 0%, rgba(214, 40, 57, 0.05) 100%);
        color: var(--primary-color);
        padding-right: 2rem;
        transform: translateX(-5px);
        box-shadow: 0 4px 12px rgba(198, 40, 40, 0.1);
    }
    
    .mobile-menu a:hover::before,
    .mobile-menu a:active::before {
        transform: scaleX(1);
    }
    
    .mobile-menu a:hover::after,
    .mobile-menu a:active::after {
        opacity: 1;
        transform: scale(1);
    }
    
    /* الأقسام */
    section {
        padding: var(--spacing-lg) 0;
    }
    
    /* المنتجات */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .product-card {
        max-width: 100%;
    }
    
    /* الدول */
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .countries-grid .country-card:nth-child(7),
    .countries-grid .country-card:nth-child(8),
    .countries-grid .country-card:nth-child(9) {
        grid-column: auto;
    }
    
    .country-card {
        padding: var(--spacing-lg);
        min-height: 200px;
    }
    
    .country-flag {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .flag-emoji {
        font-size: 3.5rem;
    }
    
    .country-card h3 {
        font-size: 1.2rem;
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-info {
        padding: var(--spacing-md);
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    /* المميزات */
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .feature {
        padding: var(--spacing-md);
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
    
    .feature p {
        font-size: 1rem;
    }
    
    /* التواصل */
    .contact-container {
        gap: var(--spacing-lg);
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details h4 {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .contact-details p {
        text-align: center;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    .form-group {
        margin-bottom: var(--spacing-md);
    }
    
    /* الفوتر */
    footer {
        padding: var(--spacing-xl) 0 var(--spacing-md) 0;
    }
    
    .footer-logo img {
        height: 70px;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    
    .footer-content > p {
        font-size: 1.1rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* شاشات صغيرة جداً (Mobile Small) */
@media (max-width: 576px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 0.8rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    header {
        width: 100%;
        max-width: 100%;
    }
    
    .header-container {
        width: 100%;
        max-width: 100%;
        padding: 0.8rem 0.8rem;
        box-sizing: border-box;
    }
    
    section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .hero {
        padding-top: 90px;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    /* الهيدر */
    .logo img {
        height: 30px;
    }
    
    .logo h2 {
        font-size: 1.1rem;
    }
    
    .mobile-menu {
        max-width: 100%;
        top: 60px;
    }
    
    .mobile-menu a {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }
    
    /* الأقسام */
    section {
        padding: var(--spacing-md) 0;
    }
    
    /* المنتجات */
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .product-image {
        height: 260px;
    }
    
    .product-info {
        padding: var(--spacing-md);
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    /* الدول */
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .countries-grid .country-card:nth-child(9) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 200px;
    }
    
    .country-card {
        padding: var(--spacing-md);
        min-height: 180px;
    }
    
    .country-flag {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .flag-emoji {
        font-size: 3rem;
    }
    
    .country-card h3 {
        font-size: 1.1rem;
    }
    
    /* المميزات */
    .features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature {
        padding: var(--spacing-md);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.95rem;
    }
    
    /* التواصل */
    .contact-container {
        gap: var(--spacing-lg);
    }
    
    .contact-item {
        padding: var(--spacing-md);
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .form-group {
        margin-bottom: var(--spacing-md);
    }
    
    .form-control {
        padding: var(--spacing-sm);
        font-size: 0.95rem;
    }
    
    /* الفوتر */
    footer {
        padding: var(--spacing-lg) 0 var(--spacing-md) 0;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-logo h2 {
        font-size: 1.5rem;
    }
    
    .footer-content > p {
        font-size: 1rem;
        padding: var(--spacing-sm);
    }
    
    .copyright {
        font-size: 0.85rem;
        margin-top: var(--spacing-md);
        padding-top: var(--spacing-md);
    }
}

/* شاشات صغيرة جداً جداً (Extra Small) */
@media (max-width: 400px) {
    .container {
        padding: 0 0.5rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .logo h2 {
        font-size: 1rem;
    }
    
    .mobile-menu {
        top: 55px;
        padding: var(--spacing-md) 0;
    }
    
    .mobile-menu a {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
}