/* Global Styles */
:root {
    --primary-color: #2563EB;
    --primary-dark: #1E40AF;
    --secondary-color: #10B981;
    --dark-bg: #0F172A;
    --light-bg: #F8FAFC;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --accent: #F59E0B;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 16px;

    /* Card and Section backgrounds */
    --card-bg: #FFFFFF;
    --section-alt-bg: #F1F5F9;
    --hero-gradient: linear-gradient(135deg, #f0f4ff 0%, #e8f5e9 100%);
    --card-border: rgba(0, 0, 0, 0.08);
    --input-bg: #FFFFFF;
}

/* Dark Mode Variables */
body.dark-mode {
    --primary-color: #3B82F6;
    --secondary-color: #34D399;
    --dark-bg: #0F172A;
    --light-bg: #1E293B;
    --text-dark: #F1F5F9;
    --text-light: #94A3B8;
    --white: #1E293B;
    --glass-bg: rgba(30, 41, 59, 0.95);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: #334155;
    --section-alt-bg: #0F172A;
    --hero-gradient: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    --card-border: rgba(255, 255, 255, 0.1);
    --input-bg: #1E293B;
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: rotate(15deg);
}

body.dark-mode .theme-toggle {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body.dark-mode .theme-toggle:hover {
    background: var(--primary-color);
    color: white;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.3;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lang-select {
    padding: 8px 12px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--input-bg);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--hero-gradient);
    transition: background 0.3s ease;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

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

.hero-content {
    flex: 1;
}

.badge-new {
    display: inline-block;
    padding: 8px 18px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}

.trust-badges {
    display: flex;
    gap: 35px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.badge-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* Screen Mockup */
.hero-image {
    flex: 1;
    position: relative;
}

.screen-mockup {
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.screen-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #EF4444;
}

.dot.yellow {
    background: #F59E0B;
}

.dot.green {
    background: #10B981;
}

.screen-mockup img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary.large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-primary.full-width {
    width: 100%;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-outline.large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--card-bg);
    border-color: var(--primary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.color-1 {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.color-2 {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
}

.color-3 {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

.color-4 {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.color-5 {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.color-6 {
    background: rgba(6, 182, 212, 0.1);
    color: #06B6D4;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-item .caption {
    padding: 18px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    transition: background 0.3s ease;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
    transition: background 0.3s ease;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--card-border);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plan-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 25px;
}

.plan-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price .amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price .period {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 5px;
}

.price .amount-alt {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 5px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.plan-features li.disabled {
    color: var(--text-light);
    opacity: 0.6;
}

.plan-features li.disabled i {
    color: #CBD5E1;
}

.plan-actions {
    text-align: center;
}

.download-label {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.download-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 15px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-bg);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-download i {
    font-size: 1.3rem;
}

.plan-actions .note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Setup Section */
.setup-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.setup-section .section-title h2 {
    color: var(--white);
}

.setup-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: var(--white);
    padding: 60px 0 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-light);
}

.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact a i {
    font-size: 1.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-contact a {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--white);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question i {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.faq-question h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    }
}

/* RTL adjustments for floating button */
[dir="rtl"] .floating-whatsapp {
    right: auto;
    left: 30px;
}

/* --- Animations --- */

/* Keyframes */
@keyframes float {
    0% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-15px);
    }

    100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(0px);
    }
}

@keyframes floatHover {
    0% {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-15px);
    }

    100% {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(0px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Base Class */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

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

/* Staggered Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Component Specific Animations */

/* Keyframe for subtle pulse glow */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.6), 0 0 60px rgba(16, 185, 129, 0.3);
    }
}

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Floating Hero Image */
.screen-mockup {
    animation: float 5s ease-in-out infinite;
}

.screen-mockup:hover {
    animation-play-state: paused;
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    transition: transform 0.4s ease;
}

/* Glowing Featured Pricing Card */
.pricing-card.featured {
    animation: pulse-glow 3s ease-in-out infinite;
}

.pricing-card.featured:hover {
    animation: none;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.4);
    transform: translateY(-10px) scale(1.02);
}

/* Feature Cards - Shine Effect on Hover */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

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

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .icon-box {
    transform: scale(1.15) rotate(5deg);
    transition: transform 0.3s ease;
}

/* Gallery Items - Zoom & Glow */
.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Buttons - Ripple Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* Download Buttons - Icon Bounce */
.btn-download:hover i {
    animation: bounce-subtle 0.6s ease infinite;
}

/* Step Cards - Number Pop */
.step-card:hover .step-number {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.step-number {
    transition: all 0.3s ease;
}

/* Badge Glow */
.badge-new {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Trust Badges Bounce */
.badge-item:hover {
    transform: translateY(-3px);
}

.badge-item:hover i {
    animation: bounce-subtle 0.5s ease;
}

/* Icon Box Hover */
.icon-box {
    transition: all 0.3s ease;
}

/* Navbar Links Underline Animation */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Gradient Text - Static Premium Look */
.gradient-text {
    background-size: 100%;
}

/* ========================================
   DARK MODE OVERRIDES
   ======================================== */

/* Sections */
body.dark-mode .features-section,
body.dark-mode .pricing-section,
body.dark-mode .faq-section,
body.dark-mode footer {
    background: var(--light-bg);
}

body.dark-mode .gallery-section {
    background: var(--section-alt-bg);
}

body.dark-mode .hero-section {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
}

/* Navbar */
body.dark-mode .navbar.scrolled {
    background-color: var(--glass-bg);
}

body.dark-mode .lang-select {
    background: var(--card-bg);
    color: var(--text-dark);
    border-color: var(--text-light);
}

/* Cards */
body.dark-mode .feature-card,
body.dark-mode .pricing-card,
body.dark-mode .faq-item,
body.dark-mode .gallery-item {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .feature-card:hover,
body.dark-mode .pricing-card:hover,
body.dark-mode .faq-item:hover {
    background: var(--section-alt-bg);
}

body.dark-mode .gallery-item .caption {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Pricing Cards */
body.dark-mode .pricing-card.featured {
    border-color: var(--primary-color);
}

body.dark-mode .plan-header {
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .plan-features li {
    border-color: rgba(255, 255, 255, 0.05);
}

/* Buttons */
body.dark-mode .btn-outline {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

body.dark-mode .btn-outline:hover {
    background: var(--text-dark);
    color: var(--light-bg);
}

body.dark-mode .btn-download {
    background: var(--card-bg);
}

/* Hero Mockup */
body.dark-mode .screen-mockup {
    background: #0F172A;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Footer */
body.dark-mode footer {
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-bottom {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Badge */
body.dark-mode .badge-new {
    background: rgba(59, 130, 246, 0.2);
}

/* Icon boxes in dark mode */
body.dark-mode .icon-box.color-1 {
    background: rgba(59, 130, 246, 0.2);
}

body.dark-mode .icon-box.color-2 {
    background: rgba(52, 211, 153, 0.2);
}

body.dark-mode .icon-box.color-3 {
    background: rgba(251, 191, 36, 0.2);
}

body.dark-mode .icon-box.color-4 {
    background: rgba(248, 113, 113, 0.2);
}

body.dark-mode .icon-box.color-5 {
    background: rgba(167, 139, 250, 0.2);
}

body.dark-mode .icon-box.color-6 {
    background: rgba(45, 212, 191, 0.2);
}

/* FAQ Icon */
body.dark-mode .faq-question i {
    background: rgba(59, 130, 246, 0.2);
}