@font-face { font-family: DroidArabicKufi; src: url('../../assets/fonts/Droid.Arabic.Kufi.ttf'); font-display: swap; }
:root {
    --bs-primary: #5a80ff;
    --bs-primary2: #5741ba;
    --bs-primary-rgb: 90, 128, 255;
    --bs-success: #10b981;
    --bs-success-rgb: 16, 185, 129;
    --bs-danger: #ef4444;
    --bs-danger-rgb: 239, 68, 68;
    --bs-warning: #f59e0b;
    --bs-warning-rgb: 245, 158, 11;
    --bs-info: #06b6d4;
    --bs-info-rgb: 6, 182, 212;
    --bs-secondary: #6b7280;
    --bs-secondary-rgb: 107, 114, 128;
    --bs-light: #f9fafb;
    --bs-light-rgb: 249, 250, 251;
    --bs-dark: #1f2937;
    --bs-dark-rgb: 31, 41, 55;
}

* {
    font-family: 'DroidArabicKufi', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DroidArabicKufi', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: var(--bs-light);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar-custom {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(90, 128, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand-custom {
    font-size: 1.2rem;
}

.navbar-btn {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-btn:hover {
    transform: translateY(-2px);
}

/* Cafe Dashboard Styles */
.cafe-dashboard {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(90, 128, 255, 0.3);
    padding: 1.5rem;
}

.stat-card {
    padding: 1rem;
    text-align: center;
    border-radius: 15px;
    color: white;
    margin-bottom: 1rem;
}

.stat-card-coffee {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.stat-card-users {
    background: linear-gradient(135deg, #5f27cd, #341f97);
}

.chart-container {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.chart-bar {
    width: 12px;
    background: linear-gradient(to top, #10ac84, #1dd1a1);
    border-radius: 6px;
    margin: 0 1px;
}

.chart-bar-1 { height: 45%; }
.chart-bar-2 { height: 60%; }
.chart-bar-3 { height: 80%; }
.chart-bar-4 { height: 70%; }
.chart-bar-5 { height: 90%; }
.chart-bar-6 { height: 65%; }
.chart-bar-7 { height: 100%; }

.customer-list {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1rem;
}

.customer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.customer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.customer-dot-red { background: #ff6b6b; }
.customer-dot-purple { background: #5f27cd; }
.customer-dot-green { background: #10ac84; }

.customer-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.customer-badge-red {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.customer-badge-purple {
    background: linear-gradient(45deg, #5f27cd, #341f97);
}

.customer-badge-green {
    background: linear-gradient(45deg, #10ac84, #1dd1a1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(ellipse at bottom, rgba(90, 128, 255, 0.1) 0%, transparent 70%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%235a80ff" fill-opacity="0.05" d="M0,32L48,69.3C96,107,192,181,288,186.7C384,192,480,128,576,122.7C672,117,768,171,864,186.7C960,203,1056,181,1152,149.3C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
    background-size: cover;
    animation: wave 20s linear infinite;
    opacity: 0.3;
}

@keyframes wave {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25%) translateY(-20px); }
    100% { transform: translateX(0) translateY(0); }
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(90, 128, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 128, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.glow-text {
    text-shadow: 0 0 10px rgba(90, 128, 255, 0.5), 0 0 20px rgba(90, 128, 255, 0.3), 0 0 30px rgba(90, 128, 255, 0.2);
}

.btn-cyber {
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-primary2));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(90, 128, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-cyber:hover {
    background: linear-gradient(45deg, var(--bs-primary2), var(--bs-primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(90, 128, 255, 0.6);
    color: white;
}

.btn-outline-cyber {
    background: transparent;
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-cyber:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(90, 128, 255, 0.4);
}


/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(ellipse at bottom, rgba(90, 128, 255, 0.1) 0%, transparent 70%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%235a80ff" fill-opacity="0.05" d="M0,32L48,69.3C96,107,192,181,288,186.7C384,192,480,128,576,122.7C672,117,768,171,864,186.7C960,203,1056,181,1152,149.3C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
    background-size: cover;
    animation: wave 20s linear infinite;
    opacity: 0.3;
}

@keyframes wave {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25%) translateY(-20px); }
    100% { transform: translateX(0) translateY(0); }
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(90, 128, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 128, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 10s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.glow-text {
    text-shadow: 0 0 20px rgba(90, 128, 255, 0.5);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 20px rgba(90, 128, 255, 0.5); }
    50% { text-shadow: 0 0 30px rgba(90, 128, 255, 0.8), 0 0 40px rgba(90, 128, 255, 0.6); }
}

.btn-cyber {
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-primary2));
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(90, 128, 255, 0.4);
}

.btn-cyber:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(90, 128, 255, 0.6);
}

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

.btn-cyber:hover::before {
    left: 100%;
}

.btn-outline-cyber {
    background: transparent;
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline-cyber:hover {
    background: var(--bs-primary);
    color: white;
    box-shadow: 0 5px 20px rgba(90, 128, 255, 0.4);
}

/* Problem Section */
.problem-section {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    padding: 100px 0;
    position: relative;
}

.problem-card {
    background: linear-gradient(135deg, rgba(90, 128, 255, 0.1), rgba(87, 65, 186, 0.1));
    border: 1px solid rgba(90, 128, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(90, 128, 255, 0.3);
    border-color: var(--bs-primary);
}

/* Feature Cards */
.feature-card {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(90, 128, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(90, 128, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--bs-primary);
    box-shadow: 0 20px 40px rgba(90, 128, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-primary2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(90, 128, 255, 0.3);
}

/* Pricing Cards */
.pricing-card {
    background: rgba(31, 41, 55, 0.9);
    border: 2px solid rgba(90, 128, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--bs-primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(90, 128, 255, 0.3);
}

.pricing-card.featured::before {
    content: 'الأكثر شعبية';
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-primary2));
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(90, 128, 255, 0.2);
    border-color: var(--bs-primary);
}

.price-tag {
    font-size: 3rem;
    font-weight: bold;
    color: var(--bs-primary);
    margin: 20px 0;
}

.price-tag span {
    font-size: 1.2rem;
    color: var(--bs-secondary);
}

/* How it Works */
.step-card {
    text-align: center;
    position: relative;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-primary2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 10px 20px rgba(90, 128, 255, 0.3);
}

.step-card::after {
    content: '';
    position: absolute;
    top: 30px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
}

.step-card:first-child::after {
    display: none;
}

/* Testimonials */
.testimonial-card {
    background: rgba(31, 41, 55, 0.8);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    border-right: 4px solid var(--bs-primary);
}

.testimonial-card .quote {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--bs-light);
}

/* FAQ */
.accordion-item {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(90, 128, 255, 0.2);
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--bs-light);
    font-weight: bold;
    border: none;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: rgba(90, 128, 255, 0.1);
    color: var(--bs-primary);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: rgba(31, 41, 55, 0.5);
    color: var(--bs-light);
}

/* Footer */
footer {
    background: rgba(31, 41, 55, 0.9);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(90, 128, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .step-card::after {
        display: none;
    }
}

/* Floating elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-primary2));
    border-radius: 2px;
}
