/* ===========================================
   شركة المورد - استيراد مواد البناء والصحية
   تصميم احترافي مع صور بناء واقعية
   =========================================== */

/* ===== 1. الأساسيات والإعدادات ===== */
:root {
    /* الألوان الرئيسية - ألوان مواد البناء */
    --primary-color: #1a365d; /* أزرق داكن - حديد */
    --secondary-color: #d97706; /* برتقالي - طوب */
    --accent-color: #059669; /* أخضر - مواد صحية */
    --dark-color: #2d3748; /* رمادي داكن - أسمنت */
    --light-color: #f7fafc; /* أبيض فاتح */
    --text-color: #2d3748;
    --border-color: #e2e8f0;
    
    /* تدرجات ألوان مواد البناء */
    --steel-blue: #2b6cb0; /* لون الحديد */
    --cement-gray: #718096; /* لون الأسمنت */
    --sand-beige: #d69e2e; /* لون الرمل */
    --brick-red: #c53030; /* لون الطوب */
    
    /* الظلال */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* الزوايا */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    direction: rtl;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to left, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--cement-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== 2. شريط التنبيه العلوي ===== */
.top-bar {
    background: linear-gradient(to right, var(--primary-color), var(--steel-blue));
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-bar-links a {
    color: white;
    text-decoration: none;
    margin-right: 25px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===== 3. الهيدر الرئيسي ===== */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* الشعار */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--steel-blue));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--brick-red));
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--cement-gray);
    font-weight: 500;
}

/* القائمة */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 8px 15px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
    background: rgba(209, 250, 229, 0.1);
}

/* أزرار التواصل */
.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.call-btn, .whatsapp-btn {
    padding: 12px 25px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.call-btn {
    background: var(--light-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
}

.call-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ===== 4. القسم الرئيسي (Hero) ===== */
.hero-section {
    padding-top: 180px;
    background: linear-gradient(135deg, 
        rgba(26, 54, 93, 0.05) 0%,
        rgba(209, 250, 229, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--brick-red));
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, rgba(217, 119, 6, 0.2), rgba(217, 119, 6, 0.05));
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat {
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 2px solid var(--border-color);
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--steel-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--cement-gray);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 16px 35px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--brick-red));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 10px solid white;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover .image-frame {
    transform: perspective(1000px) rotateY(0deg);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover .image-frame img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9), transparent);
    padding: 30px;
    color: white;
}

.overlay-text h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.overlay-text p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== 5. المعلومات القانونية ===== */
.legal-section {
    background: linear-gradient(135deg, var(--light-color), #e2e8f0);
    padding: 60px 0;
    border-top: 3px solid var(--border-color);
    border-bottom: 3px solid var(--border-color);
}

.legal-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 40px;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.legal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--steel-blue));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.legal-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.legal-item {
    background: var(--light-color);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border-right: 4px solid var(--secondary-color);
}

.legal-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.legal-item span {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
}

/* ===== 6. قسم المنتجات بدون صور - 3 مربعات ===== */
.products-section {
    background: white;
    position: relative;
    padding: 80px 0;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tab-btn {
    padding: 16px 32px;
    background: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    justify-content: center;
}

.tab-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--steel-blue));
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    position: relative;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    position: relative;
    z-index: 1;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 3 مربعات في الصف */
.products-categories-grid.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.products-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-category-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 35px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to left, var(--secondary-color), var(--accent-color));
    z-index: 1;
}

.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--steel-blue));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.product-category-card:hover .category-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.category-header h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    flex: 1;
    margin: 0;
    line-height: 1.3;
}

.category-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    background: var(--light-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-item:hover {
    background: white;
    border-color: var(--accent-color);
    transform: translateX(-5px);
    box-shadow: var(--shadow-sm);
}

.category-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-item:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.category-item span {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.6;
    flex: 1;
}

/* تصميم متجاوب */
@media (max-width: 1200px) {
    .products-categories-grid.three-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .products-categories-grid.three-columns {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .product-category-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 14px 24px;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .products-categories-grid.three-columns {
        gap: 25px;
    }
    
    .product-category-card {
        padding: 25px;
    }
    
    .category-header {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .category-header h4 {
        font-size: 1.4rem;
    }
    
    .category-item {
        padding: 12px 16px;
    }
    
    .category-item i {
        font-size: 1.1rem;
    }
    
    .category-item span {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .products-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-category-card {
        padding: 20px;
    }
    
    .category-item {
        padding: 10px 14px;
    }
    
    .category-item i {
        font-size: 1rem;
    }
    
    .category-item span {
        font-size: 0.9rem;
    }
}

/* ===== 7. قسم الشركاء العالميون ===== */
.brands-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.brands-section .container {
    position: relative;
    z-index: 1;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

/* بطاقة الشركة - بدون الجزء الأزرق */
.brand-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 480px; /* قللنا الطول */
}

.brand-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

/* نبدأ بالمحتوى مباشرة - بدون قسم أزرق */
.brand-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* حاوية الشعار - داخل المحتوى الأبيض */
.brand-logo-container {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

/* رابط الشعار */
.brand-logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.brand-logo-link:hover {
    transform: scale(1.05);
}

/* صورة الشعار - تصميم جديد */
.brand-logo-img {
    width: 220px;
    height: 110px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 0 4px rgba(26, 54, 93, 0.1);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
}

.brand-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.15),
        0 0 0 4px rgba(217, 119, 6, 0.2);
    border-color: var(--secondary-color);
}

/* تحسين شعار GEITEK */
.brand-logo-img[alt*="GEITEK"] {
    width: 260px;
    height: 100px;
    padding: 15px;
}

/* تحسين شعار GENERAL CHEMICAL */
.brand-logo-img[alt*="GENERAL"] {
    width: 220px;
    height: 110px;
    padding: 18px;
}

/* تحسين شعار SAIT */
.brand-logo-img[alt*="SAIT"] {
    width: 200px;
    height: 100px;
    padding: 18px;
}

/* علم الدولة - داخل المحتوى الأبيض */
.brand-country {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--steel-blue));
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    color: white;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.2);
    transition: all 0.3s ease;
}

.brand-country:hover {
    background: linear-gradient(135deg, var(--steel-blue), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
}

.brand-country i {
    color: #fbbf24;
    font-size: 16px;
}

/* اسم الشركة */
.brand-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.brand-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

/* الشعار التسويقي */
.brand-slogan {
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 15px 0;
    text-align: center;
    line-height: 1.6;
    padding: 12px 20px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

/* وصف الشركة */
.brand-description {
    color: var(--cement-gray);
    line-height: 1.8;
    margin: 20px 0 25px;
    font-size: 1rem;
    text-align: center;
    flex-grow: 1;
    padding: 0 10px;
}

/* منتجات الشركة */
.brand-products {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.brand-products h4 {
    width: 100%;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.brand-products h4 i {
    color: var(--accent-color);
}

.product-tag {
    background: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.product-tag:hover {
    background: #e6f7ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

/* رابط الموقع */
.website-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--secondary-color), var(--brick-red));
    color: white;
    padding: 16px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    border: none;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.25);
}

.website-link:hover {
    background: linear-gradient(135deg, var(--brick-red), var(--secondary-color));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
}

.website-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.website-link:hover i {
    transform: translateX(5px);
}

/* تصميم متجاوب */
@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .brand-card {
        min-height: 460px;
    }
}

@media (max-width: 992px) {
    .brands-section {
        padding: 80px 0;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 500px;
        margin: 50px auto 0;
    }
    
    .brand-content {
        padding: 30px;
    }
    
    .brand-logo-img {
        width: 200px;
        height: 100px;
        padding: 18px;
    }
    
    .brand-logo-img[alt*="GEITEK"] {
        width: 240px;
        height: 90px;
    }
    
    .brand-info h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .brand-card {
        min-height: 440px;
    }
    
    .brand-content {
        padding: 25px 20px;
    }
    
    .brand-logo-img {
        width: 180px;
        height: 90px;
        padding: 16px;
    }
    
    .brand-logo-img[alt*="GEITEK"] {
        width: 210px;
        height: 85px;
        padding: 14px;
    }
    
    .brand-info h3 {
        font-size: 1.5rem;
    }
    
    .brand-slogan {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .website-link {
        padding: 14px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brands-section {
        padding: 60px 0;
    }
    
    .brands-grid {
        gap: 30px;
    }
    
    .brand-card {
        min-height: 420px;
    }
    
    .brand-content {
        padding: 25px 15px;
    }
    
    .brand-logo-img {
        width: 160px;
        height: 80px;
        padding: 14px;
    }
    
    .brand-logo-img[alt*="GEITEK"] {
        width: 190px;
        height: 75px;
        padding: 12px;
    }
    
    .brand-info h3 {
        font-size: 1.4rem;
    }
    
    .brand-description {
        font-size: 0.95rem;
    }
    
    .brand-products {
        padding: 15px;
        gap: 8px;
    }
    
    .product-tag {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    
    .website-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .brand-country {
        padding: 8px 20px;
        font-size: 14px;
    }


    
}
/* ===== قسم من نحن - تصميم جديد ===== */

/* هيكل القسم الأساسي */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* الصورة يسار - النص يمين */
    gap: 50px;
    align-items: start;
}

/* الصورة على اليسار */
.about-image {
    position: sticky;
    top: 120px;
}

.image-gallery {
    position: relative;
    margin-bottom: 30px;
}

.main-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 10px solid white;
    position: relative;
    margin-bottom: 25px;
}

.main-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9), transparent);
    padding: 25px;
    color: white;
}

.overlay-content {
    text-align: center;
}

.overlay-content i {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.overlay-content h5 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* الإحصائيات */
.stats-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 18px 15px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-item:hover {
    background: white;
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--steel-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cement-gray);
    font-weight: 600;
    display: block;
}

/* النص على اليمين */
.about-text {
    padding-right: 20px;
}

/* عنوان الشركة */
.company-title {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.company-title h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 0;
}

.company-description strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* قائمة المميزات */
.features-list {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 100px;
}

.feature-item:hover {
    background: #f8fafc;
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--steel-blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--brick-red));
    transform: scale(1.1);
}

.feature-content h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--cement-gray);
    line-height: 1.5;
}

/* المنتجات المتخصصة */
.specialized-products {
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.specialized-products .section-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    text-align: right;
}

.specialized-products .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.product-category {
    background: var(--light-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.product-category:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--steel-blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.category-header h5 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    flex: 1;
}

.category-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--dark-color);
    padding: 10px 15px;
    background: white;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.product-item:hover {
    background: #e6f7ff;
    border-color: var(--accent-color);
    transform: translateX(-5px);
}

.product-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* تصميم متجاوب */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        position: static;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-box {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .main-image img {
        height: 250px;
    }
    
    .company-title h3 {
        font-size: 1.5rem;
    }
    
    .feature-item {
        min-height: auto;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .stats-box {
        grid-template-columns: 1fr;
    }
    
    .specialized-products {
        padding: 20px;
    }
    
    .product-category {
        padding: 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
/* ===== 9. قسم اتصل بنا ===== ==========================================================================================*/
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.contact-form-container,
.contact-info-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.contact-form-container h3,
.contact-info-container h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
    background: white;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--cement-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note strong {
    color: var(--secondary-color);
}

.contact-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--steel-blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1rem;
}

.info-content small {
    color: var(--cement-gray);
    font-size: 0.85rem;
}

.map-container {
    background: var(--light-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    border: 2px dashed var(--border-color);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.map-placeholder h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.map-placeholder p {
    color: var(--cement-gray);
}

.whatsapp-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 18px 30px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.whatsapp-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

/*/* ===== 10. الفوتر المعدل ===== */
.main-footer {
    background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
    color: white;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    padding: 20px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

/* شعار الفوتر */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-icon {
    transform: rotate(360deg);
    box-shadow: var(--shadow-lg);
}

.footer-logo h2 {
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}

.footer-description {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 1rem;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border-right: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.footer-description:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* معلومات الاتصال */
.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.footer-contact p:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-5px);
    box-shadow: var(--shadow-sm);
}

.footer-contact p i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* روابط سريعة */
.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(-5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.footer-links a:hover {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
}

.footer-links a i {
    color: var(--accent-color);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(-3px);
}

/* وسائل التواصل */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.social-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.social-link:nth-child(1) i { color: #25D366; } /* واتساب */
.social-link:nth-child(2) i { color: #ffffff; } /* هاتف */
.social-link:nth-child(3) i { color: #EA4335; } /* بريد */

/* ساعات العمل */
.working-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.working-hours h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.working-hours p {
    margin-bottom: 8px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours p:last-child {
    margin-bottom: 0;
}

.working-hours p i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* الجزء السفلي */
.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
}

.footer-bottom p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* تصميم متجاوب */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-section:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section:first-child {
        grid-column: span 1;
    }
    
    .footer-section {
        padding: 25px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-logo {
        gap: 15px;
    }
    
    .footer-logo h2 {
        font-size: 1.6rem;
    }
    
    .footer-description {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-contact p,
    .footer-links a {
        padding: 10px 15px;
    }
    
    .social-link {
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 0;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-logo h2 {
        font-size: 1.4rem;
    }
    
    .footer-contact p,
    .footer-links a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .social-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .working-hours {
        padding: 15px;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* تأثيرات حركية بسيطة */
.footer-section {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تأثيرات hover خفيفة */
.footer-section {
    transition: transform 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
}

/* تحسين المسافات */
.footer-section > *:last-child {
    margin-bottom: 0;
}
/* ===== 11. تصميم متجاوب ===== */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

 
}

