/**
 * ============================================================================
 * Enhanced Main Stylesheet for Saqqr Digital Marketing Theme
 * ملف التنسيق المحسن لموقع الصقر للتسويق الرقمي
 * الإصدار: 2.0 - محسن ومنظم
 * ============================================================================
 */

/* ==========================================================================
   1. CSS Custom Properties (المتغيرات)
   ========================================================================== */
:root {
    /* --- الألوان الأساسية --- */
    --saqqr-dark-blue: #083B66;
    --saqqr-turquoise: #00A7B4;
    --saqqr-gold: #C8A14F;
    --saqqr-light-blue: #0E4A7D;
    --saqqr-highlight: #FFD700;
    
    /* الألوان المشتقة (استخدام متغيرات الأساسية) */
    --saqqr-dark: var(--saqqr-light-blue);
    --saqqr-dark-hover: var(--saqqr-dark-blue);
    --saqqr-accent: var(--saqqr-turquoise);
    
    /* --- التدرجات المحسنة --- */
    --saqqr-gradient-primary: linear-gradient(135deg, var(--saqqr-turquoise), var(--saqqr-dark-blue));
    --saqqr-gradient-secondary: linear-gradient(135deg, var(--saqqr-gold), var(--saqqr-light-blue));
    --saqqr-gradient-animated: linear-gradient(-45deg, var(--saqqr-turquoise), var(--saqqr-dark-blue), var(--saqqr-light-blue), var(--saqqr-turquoise));
    --saqqr-gradient-hero: linear-gradient(135deg, var(--saqqr-turquoise) 0%, var(--saqqr-dark-blue) 50%, var(--saqqr-light-blue) 100%);
    
    /* أسماء مستعارة للتوافق مع الكود القديم */
    --saqqr-gradient-1: var(--saqqr-gradient-primary);
    --saqqr-gradient-2: var(--saqqr-gradient-secondary);
    
    /* --- الظلال والتأثيرات --- */
    --saqqr-shadow-light: 0 10px 30px rgba(0, 167, 180, 0.2);
    --saqqr-shadow-medium: 0 15px 35px rgba(0, 167, 180, 0.25);
    --saqqr-shadow-heavy: 0 20px 40px rgba(0, 167, 180, 0.3);
    --saqqr-shadow-extra: 0 25px 50px rgba(0, 167, 180, 0.4);
    --saqqr-glow: 0 0 20px rgba(0, 167, 180, 0.5);
    --saqqr-glow-strong: 0 0 30px rgba(0, 167, 180, 0.7);
    
    /* --- الحدود والأشكال --- */
    --saqqr-border-radius: 1rem;
    --saqqr-border-radius-small: 0.5rem;
    --saqqr-border-radius-large: 1.5rem;
    
    /* --- الانتقالات --- */
    --saqqr-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --saqqr-transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --saqqr-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* --- المسافات --- */
    --saqqr-spacing-xs: 0.5rem;
    --saqqr-spacing-sm: 1rem;
    --saqqr-spacing-md: 1.5rem;
    --saqqr-spacing-lg: 2rem;
    --saqqr-spacing-xl: 3rem;
    
    /* --- الخطوط --- */
    --saqqr-font-family: 'Cairo', 'Segoe UI', system-ui, sans-serif;
    --saqqr-font-size-sm: 0.875rem;
    --saqqr-font-size-base: 1rem;
    --saqqr-font-size-lg: 1.125rem;
    --saqqr-font-size-xl: 1.25rem;
    --saqqr-font-size-2xl: 1.5rem;
    --saqqr-font-size-3xl: 2rem;
    --saqqr-line-height: 1.6;
}

/* ==========================================================================
   2. Base Styles (الأنماط الأساسية)
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--saqqr-font-family) !important;
    background-color: var(--saqqr-dark-blue);
    color: #E0E0E0;
    line-height: var(--saqqr-line-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--saqqr-transition-fast);
}

a:hover {
    text-decoration: none;
}

a:focus-visible {
    outline: 2px solid var(--saqqr-turquoise);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==========================================================================
   3. Animations (التحريكات)
   ========================================================================== */

/* تحريك تغير التدرج اللوني */
@keyframes gradientShift {
    0% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
    100% { 
        background-position: 0% 50%; 
    }
}

/* تحريك الظهور من الأسفل */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تحريك الظهور من اليسار */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* تحريك الظهور من اليمين */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* تحريك التكبير */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* تحريك النبض */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

/* تحريك الارتداد */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { 
        transform: translateY(0); 
    }
    40%, 43% { 
        transform: translateY(-10px); 
    }
    70% { 
        transform: translateY(-5px); 
    }
    90% { 
        transform: translateY(-2px); 
    }
}

/* تحريك الدوران */
@keyframes rotate {
    from { 
        transform: rotate(0deg); 
    }
    to { 
        transform: rotate(360deg); 
    }
}

/* تحريك اللمعان */
@keyframes shimmer {
    0% { 
        transform: translateX(-100%); 
    }
    100% { 
        transform: translateX(100%); 
    }
}

/* تحريك توهج الحد السفلي */
@keyframes underlineGlow {
    0% { 
        box-shadow: 0 0 5px rgba(0, 167, 180, 0.5); 
    }
    100% { 
        box-shadow: 0 0 15px rgba(200, 161, 79, 0.8); 
    }
}

/* تحريك الطفو */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* تحريك الدخول المتدرج */
@keyframes staggerIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================================================
   4. Hero Section (قسم البطل الرئيسي)
   ========================================================================== */
.hero-enhanced {
    background: var(--saqqr-gradient-animated);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 59, 102, 0.3);
    z-index: 1;
}

.hero-enhanced::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.hero-enhanced .hero-content {
    position: relative;
    z-index: 2;
}

/* عناوين Hero */
.hero-title {
    background: linear-gradient(135deg, #ffffff, var(--saqqr-turquoise));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    background: linear-gradient(135deg, var(--saqqr-turquoise), var(--saqqr-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ==========================================================================
   5. CTA Buttons (أزرار الدعوة للعمل)
   ========================================================================== */
.cta-button {
    background: var(--saqqr-gradient-primary);
    border: none;
    padding: var(--saqqr-spacing-sm) var(--saqqr-spacing-lg);
    border-radius: 50px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--saqqr-transition);
    box-shadow: var(--saqqr-shadow-light);
    cursor: pointer;
    text-align: center;
    min-width: 200px;
    font-size: var(--saqqr-font-size-base);
    gap: var(--saqqr-spacing-xs);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--saqqr-shadow-heavy);
    color: white;
    text-decoration: none;
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button:focus-visible {
    outline: 2px solid var(--saqqr-gold);
    outline-offset: 3px;
}

/* تأثير الموجة عند النقر */
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:active::before {
    width: 300px;
    height: 300px;
}

/* تأثير اللمعان عند التحويم */
.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::after {
    left: 100%;
}

/* زر ثانوي */
.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--saqqr-turquoise);
    color: var(--saqqr-turquoise);
}

.cta-button-secondary:hover {
    background: var(--saqqr-turquoise);
    color: white;
}

/* ==========================================================================
   6. Cards (البطاقات)
   ========================================================================== */

/* البطاقة المحسنة الأساسية */
.card-enhanced {
    background: var(--saqqr-gradient-primary);
    border-radius: var(--saqqr-border-radius);
    padding: var(--saqqr-spacing-lg);
    transition: var(--saqqr-transition);
    border: 1px solid rgba(0, 167, 180, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    backdrop-filter: blur(10px);
    will-change: transform, opacity;
}

.card-enhanced.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

.card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--saqqr-shadow-heavy);
    border-color: rgba(0, 167, 180, 0.5);
}

/* تأثير اللمعان */
.card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.card-enhanced:hover::before {
    left: 100%;
}

/* تأثير التوهج */
.card-enhanced::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 167, 180, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-enhanced:hover::after {
    opacity: 1;
}

/* بطاقات الخدمات المحسنة */
.service-card-enhanced {
    background: var(--saqqr-gradient-primary);
    padding: var(--saqqr-spacing-lg);
    border-radius: var(--saqqr-border-radius);
    transition: var(--saqqr-transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 167, 180, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    min-height: 250px;
    will-change: transform, opacity;
}

.service-card-enhanced.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card-enhanced:hover {
    background: var(--saqqr-dark-hover);
    transform: translateY(-8px);
    box-shadow: var(--saqqr-shadow-heavy);
    border-color: rgba(0, 167, 180, 0.5);
}

.service-card-enhanced h3 {
    color: white;
    font-size: var(--saqqr-font-size-lg);
    font-weight: 700;
    margin-bottom: var(--saqqr-spacing-xs);
    transition: var(--saqqr-transition-fast);
}

.service-card-enhanced:hover h3 {
    color: var(--saqqr-accent);
}

.service-card-enhanced p {
    color: #e0e0e0;
    font-size: var(--saqqr-font-size-sm);
    margin-bottom: var(--saqqr-spacing-md);
    line-height: var(--saqqr-line-height);
    flex-grow: 1;
}

.service-card-enhanced a {
    color: var(--saqqr-accent);
    font-weight: bold;
    font-size: var(--saqqr-font-size-sm);
    transition: var(--saqqr-transition);
    align-self: flex-start;
    text-decoration: none;
    position: relative;
}

.service-card-enhanced a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saqqr-highlight);
    transition: width 0.3s ease;
}

.service-card-enhanced a:hover {
    color: var(--saqqr-highlight);
    transform: translateX(-5px);
}

.service-card-enhanced a:hover::after {
    width: 100%;
}

/* ==========================================================================
   7. Statistics Counter (العدادات الإحصائية)
   ========================================================================== */
.stats-counter {
    font-size: 3rem;
    font-weight: 900;
    background: var(--saqqr-gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: var(--saqqr-transition);
    position: relative;
}

.stats-counter:hover {
    animation: pulse 1s infinite;
}

.stats-counter::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 167, 180, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.stats-counter:hover::after {
    opacity: 1;
}

/* ==========================================================================
   8. Partners Logos (شعارات الشركاء)
   ========================================================================== */
.partner-logo,
.partner-logo-enhanced {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s ease, 
                filter 0.5s ease;
    filter: saturate(0.7);
    will-change: transform, opacity, filter;
    border-radius: var(--saqqr-border-radius-small);
    padding: var(--saqqr-spacing-xs);
}

.partner-logo-enhanced {
    opacity: 0.7;
    filter: grayscale(100%) brightness(0.8);
}

.partner-logo:hover,
.partner-logo-enhanced:hover {
    opacity: 1;
    filter: saturate(1.1) grayscale(0%) brightness(1.1);
    transform: scale(1.1) rotate(2deg);
    box-shadow: var(--saqqr-glow);
}

/* حالة الدخول */
.partner-logo.is-entering {
    opacity: 0;
    transform: scale(0.9);
}

.partner-logo.is-visible {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
}

/* ==========================================================================
   9. Testimonials (التقييمات)
   ========================================================================== */
.testimonial-card,
.testimonial-card-enhanced {
    background-color: var(--saqqr-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--saqqr-border-radius);
    padding: var(--saqqr-spacing-lg);
    color: #e5e7eb;
    position: relative;
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.35s ease, 
                background-color 0.35s ease, 
                opacity 0.6s ease,
                border-color 0.35s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    will-change: transform, opacity;
}

.testimonial-card.in-view,
.testimonial-card-enhanced.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.testimonial-card:hover,
.testimonial-card-enhanced:hover {
    background-color: var(--saqqr-dark-hover);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
    border-color: rgba(0, 167, 180, 0.35);
}

/* علامة الاقتباس */
.testimonial-card-enhanced::before {
    content: '"';
    position: absolute;
    top: 0.25rem;
    right: 1rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.07);
    font-weight: 900;
    pointer-events: none;
}

/* تنسيق النص */
.testimonial-card p,
.testimonial-card-enhanced p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 0.98rem;
}

.testimonial-card p::before,
.testimonial-card p::after {
    color: var(--saqqr-accent);
    font-weight: 900;
}

.testimonial-card p::before {
    content: """;
    margin-inline-start: 0.25rem;
}

.testimonial-card p::after {
    content: "";
    margin-inline-end: 0.25rem;
}

/* مؤلف التقييم */
.testimonial-author {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 700;
    color: var(--saqqr-accent);
    position: relative;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    width: 0.5rem;
    height: 2px;
    background: var(--saqqr-accent);
    transform: translateY(-50%);
}

/* شبكة التقييمات */
.testimonials-grid {
    display: grid;
    gap: var(--saqqr-spacing-lg);
}

/* ==========================================================================
   10. FAQ Section (الأسئلة الشائعة)
   ========================================================================== */
.faq-accordion .faq-item {
    background-color: var(--saqqr-dark);
    border-radius: var(--saqqr-border-radius);
    padding: var(--saqqr-spacing-sm);
    margin-bottom: var(--saqqr-spacing-sm);
    border: 1px solid transparent;
    transition: background-color 0.35s ease, 
                transform 0.35s ease, 
                box-shadow 0.35s ease, 
                border-color 0.35s ease;
}

.faq-accordion .faq-item:hover {
    background-color: var(--saqqr-dark-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    border-color: rgba(255, 255, 255, 0.06);
}

/* زر الرأس */
.faq-accordion .accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: var(--saqqr-spacing-sm) 1.25rem;
    color: #fff;
    font-weight: 700;
    text-align: right;
    border-radius: 0.75rem;
    transition: background-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

.faq-accordion .accordion-header:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--saqqr-highlight);
}

.faq-accordion .accordion-header:focus-visible {
    outline: 2px solid var(--saqqr-turquoise);
    outline-offset: 2px;
}

/* أيقونة السهم */
.faq-accordion .chevron {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

/* محتوى الأكورديون */
.faq-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    will-change: max-height, opacity, transform;
    transition: max-height 0.45s ease, 
                opacity 0.35s ease, 
                transform 0.35s ease;
}

.faq-accordion .accordion-content .content-inner {
    padding: 0 1.25rem var(--saqqr-spacing-sm) 1.25rem;
    color: #e0e0e0;
    line-height: 1.7;
}

/* الحالة المفتوحة */
.faq-accordion .faq-item.open .accordion-content {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
}

.faq-accordion .faq-item.open .chevron {
    transform: rotate(180deg);
}

/* تمييز السؤال المفتوح */
.faq-item summary.active {
    background-image: linear-gradient(to right, #1a365d, #2c5282);
}

.faq-item summary.active h3 {
    color: white;
}

.faq-item summary.active span {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.faq-item > div {
    transition: padding 0.3s ease-out, max-height 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.faq-item[open] > div {
    max-height: 1000px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

/* أزرار التصفية */
.category-filter {
    transition: all 0.3s ease;
}

.category-filter.active {
    background-color: #1a365d;
    color: white;
    border-color: #1a365d;
}

/* ==========================================================================
   11. Navigation & Header (التنقل والهيدر)
   ========================================================================== */
#header {
    z-index: 9999 !important;
    background-color: #0D1C3C !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal !important;
}

#header .nav-link {
    color: #fff !important;
    text-decoration: none;
    padding: 0.3125rem 0.625rem;
    border-radius: 0.3125rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

#header .nav-link:hover {
    color: var(--saqqr-turquoise) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

#header .nav-link:focus-visible {
    outline: 2px solid var(--saqqr-turquoise);
    outline-offset: 2px;
}

/* القائمة المنسدلة */
#header .sub-menu {
    background: #fff !important;
    color: #0D1C3C !important;
    border: 1px solid #e6eef3;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

#header .sub-menu a {
    color: #0D1C3C !important;
}

#header .sub-menu a:hover {
    background: rgba(0, 183, 193, 0.1);
    color: #0D1C3C !important;
}

/* روابط القائمة */
nav ul li a,
.nav-link {
    color: #ffffff;
    padding: 0.3125rem 0.625rem;
    border-radius: 0.3125rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

nav ul li a:hover,
.nav-link:hover {
    color: var(--saqqr-highlight) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* ==========================================================================
   12. Footer (التذييل)
   ========================================================================== */
footer a,
footer p,
footer address {
    color: #cbd5e1;
    transition: var(--saqqr-transition-fast);
}

footer a:hover {
    color: var(--saqqr-turquoise);
    text-shadow: 0 0 5px rgba(0, 167, 180, 0.5);
}

footer a:focus-visible {
    outline: 2px solid var(--saqqr-turquoise);
    outline-offset: 2px;
}

footer h4 {
    color: #FFFFFF;
}

/* ==========================================================================
   13. About Section (قسم من نحن)
   ========================================================================== */
.about-section-simple {
    position: relative;
    padding: var(--saqqr-spacing-xl) 0;
    background: var(--saqqr-light-blue);
    overflow: hidden;
}

.about-bg-simple {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-gradient-simple {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(8, 59, 102, 0.1) 0%, 
        rgba(0, 167, 180, 0.05) 50%,
        rgba(200, 161, 79, 0.05) 100%
    );
    animation: gradientPulse 20s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% { 
        opacity: 0.3; 
    }
    50% { 
        opacity: 0.6; 
    }
}

.about-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.about-header-simple {
    margin-bottom: var(--saqqr-spacing-xl);
}

.about-title-simple {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--saqqr-spacing-sm);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-underline-simple {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--saqqr-turquoise), var(--saqqr-gold));
    margin: 0 auto;
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

.about-main-content {
    margin-bottom: var(--saqqr-spacing-xl);
}

.glass-simple {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: var(--saqqr-spacing-lg);
    margin-bottom: var(--saqqr-spacing-md);
    transition: all 0.3s ease;
}

.glass-simple:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.intro-text,
.experience-text,
.target-text,
.ai-text {
    font-size: var(--saqqr-font-size-lg);
    color: rgb(209, 213, 219);
    line-height: 1.7;
    margin: 0;
}

.about-mission {
    margin-top: var(--saqqr-spacing-lg);
    padding: var(--saqqr-spacing-md);
    background: linear-gradient(135deg, 
        rgba(0, 167, 180, 0.1) 0%, 
        rgba(200, 161, 79, 0.1) 100%
    );
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-text {
    font-size: var(--saqqr-font-size-2xl);
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* الإحصائيات البسيطة */
.about-stats-simple {
    display: flex;
    justify-content: center;
    gap: var(--saqqr-spacing-xl);
    flex-wrap: wrap;
    margin-top: var(--saqqr-spacing-xl);
}

.stat-item-simple {
    text-align: center;
    padding: var(--saqqr-spacing-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item-simple:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number-simple {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--saqqr-gold);
    text-shadow: 0 2px 10px rgba(200, 161, 79, 0.5);
    margin-bottom: var(--saqqr-spacing-xs);
}

.stat-label-simple {
    font-size: var(--saqqr-font-size-sm);
    color: rgb(209, 213, 219);
    font-weight: 600;
}

/* ==========================================================================
   14. Icons (الأيقونات)
   ========================================================================== */
.icon-enhanced {
    width: 4rem;
    height: 4rem;
    background: var(--saqqr-gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--saqqr-spacing-sm);
    transition: var(--saqqr-transition);
    box-shadow: var(--saqqr-shadow-light);
    position: relative;
    overflow: hidden;
}

.icon-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-enhanced:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--saqqr-glow);
}

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

/* ==========================================================================
   15. Scroll Animations (تحريكات التمرير)
   ========================================================================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--saqqr-transition-slow);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   16. Utility Classes (الفئات المساعدة)
   ========================================================================== */
.text-saqqr-gold {
    color: var(--saqqr-gold);
}

.text-saqqr-turquoise {
    color: var(--saqqr-turquoise);
}

.text-saqqr-dark-blue {
    color: var(--saqqr-dark-blue);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

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

/* ==========================================================================
   17. Responsive Design (التصميم المتجاوب)
   ========================================================================== */
@media (max-width: 1024px) {
    .about-section-simple {
        padding: 4rem 0;
    }
    
    .about-stats-simple {
        gap: var(--saqqr-spacing-lg);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-counter {
        font-size: 2.5rem;
    }
    
    .card-enhanced:hover,
    .service-card-enhanced:hover {
        transform: translateY(-5px);
    }
    
    .cta-button {
        min-width: 150px;
        padding: 0.8rem 1.5rem;
    }
    
    .about-section-simple {
        padding: 3rem 0;
    }
    
    .glass-simple {
        padding: var(--saqqr-spacing-md);
        margin-bottom: var(--saq-spacing-sm);
    }
    
    .intro-text,
    .experience-text,
    .target-text,
    .ai-text {
        font-size: var(--saqqr-font-size-base);
    }
    
    .about-stats-simple {
        gap: var(--saqqr-spacing-sm);
        margin-top: var(--saq-spacing-lg);
    }
    
    .stat-item-simple {
        padding: var(--saq-spacing-sm);
        min-width: 100px;
    }
    
    .stat-number-simple {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-counter {
        font-size: 2rem;
    }
    
    .card-enhanced,
    .service-card-enhanced {
        padding: var(--saq-spacing-md);
    }
    
    .cta-button {
        width: 100%;
        margin-bottom: var(--saq-spacing-sm);
    }
    
    .about-section-simple {
        padding: 2rem 0;
    }
    
    .about-header-simple {
        margin-bottom: var(--saq-spacing-lg);
    }
    
    .about-main-content {
        margin-bottom: var(--saq-spacing-lg);
    }
    
    .glass-simple {
        padding: 1.25rem;
    }
    
    .about-stats-simple {
        flex-direction: column;
        align-items: center;
        gap: var(--saq-spacing-sm);
    }
    
    .stat-item-simple {
        width: 100%;
        max-width: 200px;
    }
}

/* ==========================================================================
   18. Print Styles (أنماط الطباعة)
   ========================================================================== */
@media print {
    .hero-enhanced {
        background: var(--saqqr-dark-blue) !important;
        color: white !important;
        animation: none !important;
    }
    
    .hero-enhanced::before,
    .hero-enhanced::after {
        display: none !important;
    }
    
    .card-enhanced,
    .service-card-enhanced,
    .testimonial-card,
    .testimonial-card-enhanced {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .cta-button {
        background: var(--saqqr-dark-blue) !important;
        border: 2px solid var(--saqqr-dark-blue) !important;
    }
    
    .faq-accordion .faq-item {
        background: white !important;
        border: 1px solid #ccc !important;
    }
    
    .faq-accordion .accordion-content {
        max-height: none !important;
        opacity: 1 !important;
    }
}

/* ==========================================================================
   19. Accessibility (إمكانية الوصول)
   ========================================================================== */

/* احترام تفضيلات تقليل الحركة */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-enhanced {
        animation: none !important;
        background: var(--saqqr-dark-blue);
    }
}

/* تحسين التركيز للوحة المفاتيح */
:focus-visible {
    outline: 2px solid var(--saqqr-turquoise);
    outline-offset: 2px;
}

/* تخطي الروابط للوصول السريع */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--saqqr-dark-blue);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   20. Performance Optimizations (تحسينات الأداء)
   ========================================================================== */

/* تحسين الأداء للعناصر المتحركة */
.hero-enhanced,
.card-enhanced,
.service-card-enhanced,
.testimonial-card,
.partner-logo {
    contain: layout style;
}

/* تحسين الأداء للعناصر الثابتة */
.about-bg-simple,
.hero-enhanced::before,
.hero-enhanced::after {
    contain: strict;
}

/* GPU Acceleration للتحريكات */
.cta-button,
.card-enhanced,
.service-card-enhanced,
.icon-enhanced {
    transform: translateZ(0);
    backface-visibility: hidden;
}