/* 
* أمانك - تطبيق التحقق من الأرقام المشبوهة
* CSS الرئيسي
*/

/* ===== المتغيرات ===== */
:root {
    --primary-color: #7e6af9;
    --primary-dark: #6652e5;
    --primary-light: #9d91f7;
    --accent-color: #dd3bc8;
    --accent-dark: #bc24a7;
    --accent-light: #f15ee5;
    
    --dark-bg: #121218;
    --dark-bg-lighter: #1e1e2d;
    --dark-card: #22222f;
    
    --text-light-high: rgba(255, 255, 255, 0.95);
    --text-light-medium: rgba(255, 255, 255, 0.75);
    --text-light-low: rgba(255, 255, 255, 0.5);
    
    --shadow-purple: 0 8px 20px rgba(126, 106, 249, 0.25);
    --shadow-pink: 0 8px 20px rgba(221, 59, 200, 0.25);
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    --transition-time: 0.3s;
    --transition-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== إعدادات عامة ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    background-color: var(--dark-bg);
    color: var(--text-light-medium);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-time) var(--transition-function);
}

ul {
    list-style: none;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light-high);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light-low);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== الأزرار ===== */
.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-time) var(--transition-function);
    cursor: pointer;
    gap: 8px;
}

.primary-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--text-light-high);
    box-shadow: var(--shadow-purple);
    border: none;
    position: relative;
    overflow: hidden;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(126, 106, 249, 0.4);
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-time) var(--transition-function);
}

.primary-btn:hover::before {
    opacity: 1;
}

.secondary-btn {
    background-color: rgba(126, 106, 249, 0.1);
    color: var(--primary-light);
    border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: rgba(126, 106, 249, 0.2);
    transform: translateY(-3px);
}

/* ===== الهيدر ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(18, 18, 24, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(126, 106, 249, 0.15);
    transition: all var(--transition-time) var(--transition-function);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(18, 18, 24, 0.9);
    border-bottom: 1px solid rgba(126, 106, 249, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    margin-left: 12px;
    color: var(--text-light-high);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-purple);
    transition: transform 0.3s ease;
}

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

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), transparent);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light-high);
    transition: all var(--transition-time) var(--transition-function);
}

.logo-container:hover .logo-text {
    text-shadow: 0 0 15px rgba(126, 106, 249, 0.5);
}

.nav-links {
    display: flex;
    gap: 32px;
    margin: 0 auto;
}

.nav-link {
    position: relative;
    color: var(--text-light-medium);
    font-weight: 500;
    padding: 6px 4px;
}

.nav-link:hover {
    color: var(--accent-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width var(--transition-time) var(--transition-function);
    border-radius: 2px;
    opacity: 0;
}

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

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    color: var(--text-light-high);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-pink);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-time) var(--transition-function);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(221, 59, 200, 0.5);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-time) var(--transition-function);
}

.download-btn:hover::before {
    opacity: 1;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background-color: rgba(126, 106, 249, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--text-light-medium);
    cursor: pointer;
    transition: all var(--transition-time) var(--transition-function);
}

.menu-toggle:hover {
    background-color: rgba(126, 106, 249, 0.2);
    color: var(--text-light-high);
}

/* قائمة موبايل */
.mobile-menu {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--dark-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-nav-link {
    font-size: 1.2rem;
    color: var(--text-light-medium);
    transition: color var(--transition-time) var(--transition-function);
}

.mobile-nav-link:hover {
    color: var(--accent-light);
}

.mobile-download-btn-container {
    margin-top: 40px;
}

.mobile-download-btn {
    display: inline-flex;
    padding: 12px 32px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    color: var(--text-light-high);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-pink);
    transition: all var(--transition-time) var(--transition-function);
}

.mobile-download-btn:hover {
    transform: translateY(-3px);
}

/* ===== قسم الهيرو ===== */
.hero-section {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light-high);
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    right: -15px;
    top: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light-low);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(126, 106, 249, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light-high);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light-low);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes phone-float {
    0% { transform: translateY(30px) rotate(0deg); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateY(0) rotate(0deg); opacity: 1; }
}

@keyframes phone-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes phone-glow {
    0% { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 25px 50px rgba(126, 106, 249, 0.3); }
    100% { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); }
}

@keyframes phone-shine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.phone-mockup {
    position: relative;
    width: 270px;
    height: 550px;
    background: rgba(30, 30, 45, 0.5);
    border-radius: 40px;
    border: 10px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 2;
    animation: phone-float 1.2s ease-out forwards, phone-pulse 4s ease-in-out infinite 1.2s, phone-glow 6s ease-in-out infinite 1.2s;
    transform-origin: center center;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    border-radius: 50px;
    animation: phone-shine 5s linear infinite 2s;
    z-index: -1;
}

@keyframes screen-on {
    0% { opacity: 0; }
    70% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes content-fade-in {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(170deg, var(--dark-bg-lighter), var(--dark-bg));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: screen-on 1.5s ease-out forwards;
    position: relative;
}

.phone-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    animation: content-fade-in 1s ease-out 2s forwards;
    pointer-events: none;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: content-fade-in 1s ease-out 1.7s forwards;
    opacity: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(126, 106, 249, 0.2);
    top: -100px;
    right: -200px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: rgba(221, 59, 200, 0.15);
    bottom: -100px;
    left: -150px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* ===== قسم المميزات ===== */
.features-section {
    padding: 120px 0;
    background-color: var(--dark-bg-lighter);
    position: relative;
}

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

.feature-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    transition: all var(--transition-time) var(--transition-function);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(126, 106, 249, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity var(--transition-time) var(--transition-function);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(126, 106, 249, 0.1), rgba(221, 59, 200, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.6rem;
    transition: all var(--transition-time) var(--transition-function);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(126, 106, 249, 0.2), rgba(221, 59, 200, 0.1));
    color: var(--accent-light);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light-high);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-light-low);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== قسم كيف يعمل ===== */
.how-it-works-section {
    padding: 120px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light-high);
    margin-left: 30px;
    box-shadow: var(--shadow-purple);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light-high);
    margin-bottom: 8px;
}

.step-description {
    font-size: 1rem;
    color: var(--text-light-low);
}

.step-connection {
    width: 3px;
    height: 60px;
    background-color: rgba(126, 106, 249, 0.2);
    margin: -30px auto 30px 88px;
    position: relative;
}

.step-connection::before, .step-connection::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    right: -5px;
}

.step-connection::before {
    top: -6px;
    animation: pulse 2s infinite;
}

.step-connection::after {
    bottom: -6px;
    animation: pulse 2s infinite 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* ===== قسم أنواع البلاغات ===== */
.report-types-section {
    padding: 120px 0;
    background: linear-gradient(to bottom right, var(--dark-bg), var(--dark-bg-lighter));
    position: relative;
    overflow: hidden;
}

.report-types-section::before {
    content: '';
    position: absolute;
    top: 40%;
    right: 10%;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: rgba(126, 106, 249, 0.15);
    filter: blur(3rem);
    opacity: 0.4;
    z-index: 0;
}

.report-types-container {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.report-type-row {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    border: 1px solid rgba(126, 106, 249, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}

.report-type-row:last-child {
    margin-bottom: 0;
}

.report-type-row:hover {
    transform: translateY(-5px);
    border-color: rgba(126, 106, 249, 0.2);
    background-color: rgba(0, 0, 0, 0.8);
}

.report-type-border {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3px;
}

.annoying .report-type-border {
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.phishing .report-type-border {
    background: linear-gradient(to bottom, #fbb040, #fa9827);
}

.fraud .report-type-border {
    background: linear-gradient(to bottom, #f44336, #d32f2f);
}

.trusted .report-type-border {
    background: linear-gradient(to bottom, #4caf50, #2e7d32);
}

.report-type-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.report-type-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.report-type-row:hover::before {
    opacity: 1;
}

.report-type-icon-container {
    margin-left: 1.5rem;
    flex-shrink: 0;
}

.report-type-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    font-size: 1.75rem;
}

.annoying .report-type-icon {
    background-color: rgba(126, 106, 249, 0.15);
    color: var(--primary-light);
}

.phishing .report-type-icon {
    background-color: rgba(251, 176, 64, 0.15);
    color: #fbb040;
}

.fraud .report-type-icon {
    background-color: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.trusted .report-type-icon {
    background-color: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.report-type-row:hover .report-type-icon {
    transform: scale(1.1);
}

.annoying:hover .report-type-icon {
    box-shadow: 0 10px 25px rgba(96, 69, 255, 0.3);
}

.phishing:hover .report-type-icon {
    box-shadow: 0 10px 25px rgba(251, 140, 0, 0.3);
}

.fraud:hover .report-type-icon {
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

.trusted:hover .report-type-icon {
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
}

.report-type-details {
    flex: 1;
    text-align: right;
}

.report-type-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.annoying .report-type-title {
    color: var(--primary-light);
}

.phishing .report-type-title {
    color: #fbb040;
}

.fraud .report-type-title {
    color: #f44336;
}

.trusted .report-type-title {
    color: #4caf50;
}

.report-type-description {
    color: var(--text-light-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.report-type-row:hover .report-type-description {
    opacity: 1;
}

.risk-level-indicator {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.05);
}

.annoying .risk-level-indicator {
    background-color: rgba(126, 106, 249, 0.1);
}

.phishing .risk-level-indicator {
    background-color: rgba(251, 176, 64, 0.1);
}

.fraud .risk-level-indicator {
    background-color: rgba(244, 67, 54, 0.1);
}

.trusted .risk-level-indicator {
    background-color: rgba(76, 175, 80, 0.1);
}

.risk-level-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.annoying .risk-level-text {
    color: var(--primary-light);
}

.phishing .risk-level-text {
    color: #fbb040;
}

.fraud .risk-level-text {
    color: #f44336;
}

.trusted .risk-level-text {
    color: #4caf50;
}

.risk-dots {
    display: flex;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.risk-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-left: 0.375rem;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.risk-dot:last-child {
    margin-left: 0;
}

.risk-dot.active {
    background-color: currentColor;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .report-type-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .report-type-icon-container {
        margin-left: 0;
        margin-bottom: 1.25rem;
    }
    
    .report-type-details {
        text-align: center;
    }
}

/* ===== قسم الإحصائيات ===== */
.statistics-section {
    padding: 120px 0;
    background-color: var(--dark-bg);
    position: relative;
}

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

.statistic-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    transition: all var(--transition-time) var(--transition-function);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.statistic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(126, 106, 249, 0.1);
}

.statistic-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(126, 106, 249, 0.1), rgba(221, 59, 200, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-light);
    font-size: 1.8rem;
    transition: all var(--transition-time) var(--transition-function);
}

.statistic-card:hover .statistic-icon {
    background: linear-gradient(135deg, rgba(126, 106, 249, 0.2), rgba(221, 59, 200, 0.1));
    color: var(--accent-light);
}

.statistic-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light-high);
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.statistic-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light-high);
    margin-bottom: 15px;
}

.statistic-description {
    color: var(--text-light-low);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== قسم الأسئلة الشائعة ===== */
.faq-section {
    padding: 120px 0;
    background-color: var(--dark-bg-lighter);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--dark-card);
    border-radius: var(--border-radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all var(--transition-time) var(--transition-function);
}

.faq-item:hover {
    border-color: rgba(126, 106, 249, 0.1);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-time) var(--transition-function);
}

.faq-question:hover {
    background-color: rgba(126, 106, 249, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light-high);
}

.faq-icon {
    color: var(--primary-light);
    transition: transform var(--transition-time) var(--transition-function);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    height: 0;
    overflow: hidden;
    transition: all var(--transition-time) var(--transition-function);
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    height: auto;
}

.faq-answer p {
    color: var(--text-light-low);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== قسم التواصل ===== */
.contact-section {
    padding: 120px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(126, 106, 249, 0.1), rgba(221, 59, 200, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.2rem;
    transition: all var(--transition-time) var(--transition-function);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(126, 106, 249, 0.2), rgba(221, 59, 200, 0.1));
    color: var(--accent-light);
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light-high);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light-low);
    font-size: 1rem;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(126, 106, 249, 0.1), rgba(221, 59, 200, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-medium);
    font-size: 1rem;
    transition: all var(--transition-time) var(--transition-function);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light-high);
    transform: translateY(-3px);
}

.contact-form-container {
    background-color: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    color: var(--text-light-medium);
}

.contact-form input, .contact-form textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 12px 15px;
    color: var(--text-light-high);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-time) var(--transition-function);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(126, 106, 249, 0.05);
}

.submit-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--text-light-high);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-time) var(--transition-function);
    box-shadow: var(--shadow-purple);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(126, 106, 249, 0.4);
}

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

.submit-btn:hover::before {
    opacity: 1;
}

/* ===== قسم الإحصائيات ===== */
.statistics-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    display: none; /* إخفاء قسم الإحصائيات مؤقتاً */
}

/* ===== قسم التحميل ===== */
.download-section {
    padding: 120px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.app-screens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    perspective: 1000px;
}

@keyframes screen-float {
    0% { transform: translateY(40px) rotate(0deg); opacity: 0; }
    20% { opacity: 0.5; }
    100% { transform: translateY(0) rotate(0deg); opacity: 1; }
}

@keyframes screen-tilt {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    50% { transform: rotateY(5deg) rotateX(2deg); }
    100% { transform: rotateY(0deg) rotateX(0deg); }
}

.app-screen {
    position: relative;
    width: 180px;
    height: 380px;
    background: rgba(30, 30, 45, 0.5);
    border-radius: 30px;
    border: 8px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 2;
    transform-style: preserve-3d;
}

.app-screen::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    border-radius: 38px;
    animation: phone-shine 5s linear infinite;
    z-index: -1;
}

.screen-1 {
    animation: screen-float 1s ease-out forwards, screen-tilt 6s ease-in-out infinite 1s;
    transform: translateY(40px) rotate(0deg);
    opacity: 0;
}

.screen-2 {
    animation: screen-float 1s ease-out 0.3s forwards, screen-tilt 6s ease-in-out infinite 1.3s;
    transform: translateY(40px) rotate(0deg);
    opacity: 0;
    z-index: 3;
}

.screen-3 {
    animation: screen-float 1s ease-out 0.6s forwards, screen-tilt 6s ease-in-out infinite 1.6s;
    transform: translateY(40px) rotate(0deg);
    opacity: 0;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: content-fade-in 1s ease-out 1.7s forwards;
    opacity: 0;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 60px;
}

.app-store-btn, .play-store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border-radius: var(--border-radius-lg);
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-time) var(--transition-function);
}

.app-store-btn:hover, .play-store-btn:hover {
    transform: translateY(-5px);
    background-color: rgba(126, 106, 249, 0.1);
    border-color: var(--primary-color);
}

.app-store-btn i, .play-store-btn i {
    font-size: 2rem;
    color: var(--text-light-high);
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.small-text {
    font-size: 0.8rem;
    color: var(--text-light-low);
}

.large-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light-high);
}

.app-screens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.app-screen {
    width: 220px;
    height: 450px;
    background-color: var(--dark-card);
    border-radius: 30px;
    border: 10px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.screen-1 {
    transform: rotate(-5deg) translateY(20px);
    z-index: 1;
}

.screen-2 {
    z-index: 2;
}

.screen-3 {
    transform: rotate(5deg) translateY(20px);
    z-index: 1;
}

/* ===== الفوتر ===== */
.footer {
    background-color: var(--dark-bg);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-left: 15px;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light-high);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-light-low);
    font-size: 0.95rem;
    transition: all var(--transition-time) var(--transition-function);
}

.footer-col a:hover {
    color: var(--primary-light);
    transform: translateX(-5px);
}

.footer-download h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light-high);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-download h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-app-store-btn, .footer-play-store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-time) var(--transition-function);
}

.footer-app-store-btn:hover, .footer-play-store-btn:hover {
    background-color: rgba(126, 106, 249, 0.1);
}

.footer-app-store-btn i, .footer-play-store-btn i {
    font-size: 1.2rem;
    color: var(--text-light-high);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

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

.copyright {
    color: var(--text-light-low);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}

/* ===== ميديا كويري ===== */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav-links, .download-btn-container {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-screens {
        flex-direction: column;
        gap: 20px;
    }
    
    .app-screen {
        width: 180px;
        height: 360px;
    }
    
    .screen-1, .screen-3 {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}