/* Root Variables */
:root {
    /* Primary Colors */
    --primary: #991b1b;
    --primary-hover: #7f1d1d;
    --primary-light: #fef2f2;
    
    /* Secondary Colors */
    --gold: #fbbf24;
    --green: #10b981;
    --cyan: #06b6d4;
    
    /* Neutral Colors */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #06b6d4;
    
    /* Typography */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Optimize scroll performance */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.75;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.2;
    pointer-events: none;
}

/* Disable particles on mobile and tablets for performance */
@media (max-width: 1024px) {
    #particles-js {
        display: none !important;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--primary);
}

.logo i {
    font-size: var(--text-3xl);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: var(--font-medium);
    position: relative;
    transition: color var(--transition-base);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn-small {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: 'Cairo', sans-serif;
}

.cta-btn-small:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: var(--text-2xl);
    color: var(--primary);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-2xl);
    z-index: 2000;
    padding: var(--spacing-lg);
    transition: right var(--transition-base);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: var(--text-2xl);
    color: var(--primary);
    cursor: pointer;
    margin-bottom: var(--spacing-lg);
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.mobile-nav-links li {
    margin-bottom: var(--spacing-sm);
}

.mobile-nav-links a {
    display: block;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: var(--font-medium);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.mobile-nav-links a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.cta-btn-mobile {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: var(--spacing-sm);
    border-radius: var(--radius-lg);
    font-weight: var(--font-semibold);
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(153, 27, 27, 0.05) 0%, 
        rgba(251, 191, 36, 0.05) 50%, 
        rgba(6, 182, 212, 0.05) 100%);
    /* Animation removed for performance */
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    /* Animation disabled for performance */
}

/* Hide shapes on smaller screens */
@media (max-width: 1024px) {
    .floating-shapes {
        display: none !important;
    }
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--cyan);
    top: 50%;
    left: 5%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    padding: var(--spacing-2xl) 0;
}

.hero-text {
    z-index: 1;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-semibold);
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(153, 27, 27, 0.3);
}

.cta-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.4);
}

.cta-secondary {
    background: var(--gold);
    color: var(--gray-900);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.cta-secondary:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl);
    position: relative;
    /* Float animation removed for performance */
}

/* Disable on mobile */
@media (max-width: 768px) {
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(153, 27, 27, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone App Logo */
.phone-app-logo {
    text-align: center;
    z-index: 1;
}

.logo-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.3);
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.logo-icon i {
    font-size: 3rem;
    color: white;
}

.phone-app-logo h2 {
    font-size: 2rem;
    font-weight: var(--font-bold);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phone-app-logo p {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: var(--font-semibold);
}

/* Floating Points Animation */
.floating-point {
    position: absolute;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    animation: floatUpPoints 3s ease-in-out infinite;
    opacity: 0;
    text-shadow: 0 4px 15px rgba(153, 27, 27, 0.6),
                 0 0 20px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.point-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.point-2 {
    top: 30%;
    right: 20%;
    animation-delay: 0.6s;
}

.point-3 {
    top: 60%;
    left: 25%;
    animation-delay: 1.2s;
}

.point-4 {
    top: 70%;
    right: 15%;
    animation-delay: 1.8s;
}

.point-5 {
    top: 45%;
    right: 15%;
    animation-delay: 2.4s;
}

@keyframes floatUpPoints {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}

.floating-notification {
    position: absolute;
    background: white;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: var(--font-semibold);
    opacity: 0;
    animation: notificationSlide 4s ease-in-out infinite;
}

.notification-1 {
    top: 10%;
    right: -60%;
    animation-delay: 0s;
}

.notification-1 i {
    color: var(--gold);
}

.notification-2 {
    bottom: 15%;
    left: -60%;
    animation-delay: 2s;
}

.notification-2 i {
    color: var(--green);
}

@keyframes notificationSlide {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    10%, 40% {
        opacity: 1;
    }
    15% {
        transform: translateX(var(--slide-in));
    }
    45% {
        transform: translateX(var(--slide-in));
    }
    50% {
        opacity: 0;
        transform: translateX(0);
    }
}

.notification-1,
.notification-3 {
    --slide-in: -70px;
}

.notification-2 {
    --slide-in: 70px;
}

@keyframes notificationSlide {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateX(-80px);
    }
}

.floating-notification i {
    color: var(--primary);
    font-size: var(--text-lg);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: var(--text-2xl);
    color: var(--primary);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-600);
}

/* Features Section */
.features-section {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.column-header {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-md);
}

.column-header i {
    font-size: var(--text-5xl);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.column-header h3 {
    font-size: var(--text-2xl);
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

.column-header p {
    color: var(--gray-600);
}

.feature-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: var(--text-3xl);
    color: var(--primary);
    transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2) rotate(5deg);
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h4 {
    font-size: var(--text-xl);
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* Feature Animations */
.feature-animation {
    margin-top: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.qr-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    position: relative;
    padding: var(--spacing-sm);
}

.qr-code {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: var(--radius-md);
    position: relative;
    padding: 6px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

.qr-code svg {
    width: 100%;
    height: 100%;
    display: block;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary);
    animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% {
        top: 0;
    }
    50% {
        top: 77px;
    }
}

.success-check {
    width: 40px;
    height: 40px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: checkPop 2s ease-in-out infinite;
}

@keyframes checkPop {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0;
    }
    90% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.tracking-animation {
    padding: var(--spacing-sm);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-xs);
}

.step {
    flex: 1;
    padding: var(--spacing-xs);
    background: var(--gray-200);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.step.active {
    background: var(--primary);
    color: white;
}

/* How It Works Section */
.how-it-works-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.how-it-works-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: 'Cairo', sans-serif;
}

.tab-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tab-btn i {
    font-size: var(--text-xl);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.steps-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
}

.steps-line {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    height: 200px;
    z-index: 0;
}

.line-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.step-icon i {
    font-size: var(--text-4xl);
    color: var(--primary);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.step-item h3 {
    font-size: var(--text-xl);
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

.step-item p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.benefit-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, var(--primary-light) 50%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.benefit-card:hover::before {
    opacity: 1;
    animation: shine 1.5s ease infinite;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.benefit-icon i {
    font-size: var(--text-4xl);
    color: var(--primary);
    /* Pulse animation disabled for performance */
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.benefit-card h3 {
    font-size: var(--text-xl);
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Statistics Section */
.stats-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
}

.stats-section .section-title,
.stats-section .section-subtitle {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
}

.stat-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--text-5xl);
    color: white;
    z-index: 1;
}

.progress-ring-circle {
    transition: stroke-dashoffset 1s ease;
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--spacing-xs);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--spacing-xs);
}

.stat-item p {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background: none;
    border: none;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gray-900);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: 'Cairo', sans-serif;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform var(--transition-base);
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--gray-600);
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta-section {
    padding: var(--spacing-2xl) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-mesh-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(153, 27, 27, 0.05) 0%, 
        rgba(251, 191, 36, 0.05) 50%, 
        rgba(16, 185, 129, 0.05) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-semibold);
}

.cta-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    margin-bottom: var(--spacing-xl);
}

.cta-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 0 30px rgba(153, 27, 27, 0.4);
    animation: pulse 2s ease-in-out infinite;
    font-family: 'Cairo', sans-serif;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(153, 27, 27, 0.4);
    }
    50% {
        box-shadow: 0 0 50px rgba(153, 27, 27, 0.6);
    }
}

.cta-btn-large:hover {
    background: var(--primary-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(153, 27, 27, 0.5);
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--gray-900);
    color: white;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.badge-item i {
    font-size: var(--text-3xl);
}

.badge-item small {
    display: block;
    font-size: var(--text-xs);
    opacity: 0.8;
}

.badge-item strong {
    display: block;
    font-size: var(--text-base);
}

.qr-code-container {
    text-align: center;
}

.qr-code-box {
    display: inline-block;
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-sm);
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder i {
    font-size: var(--text-6xl);
    color: var(--gray-400);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-md);
    color: var(--gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--spacing-sm);
}

.footer-logo i {
    font-size: var(--text-3xl);
    color: var(--gold);
}

.footer-column p {
    color: var(--gray-400);
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column ul a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-column ul a:hover {
    color: white;
    transform: translateX(-5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gray-400);
    margin-bottom: var(--spacing-sm);
}

.contact-info i {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .cta-btn-small {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-xl);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .steps-line {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .store-badges {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .cta-title {
        font-size: var(--text-3xl);
    }
}
