:root {
    --primary-purple: #6c5ce7;
    --dark-purple: #0c0018;
    --accent-purple: #a29bfe;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Outfit', sans-serif;
    background-color: var(--dark-purple);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(12, 0, 24, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.nav-logo img {
    height: 40px;
    border-radius: 8px; /* Consistent rounded corners */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 400;
    transition: color 0.3s;
}

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

.nav-btn {
    background: var(--primary-purple);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600 !important;
    text-decoration: none;
    color: white;
    transition: transform 0.3s, background 0.3s;
}

.nav-btn:hover {
    transform: scale(1.05);
    background: var(--accent-purple);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--text-white);
    cursor: pointer;
}

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

.btn-recharge-mobile {
    background: linear-gradient(135deg, #ff9f43, #ff6b6b);
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 70% 30%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(162, 155, 254, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-playstore img {
    height: 60px;
    transition: transform 0.3s;
}

.btn-playstore:hover img {
    transform: scale(1.05);
}

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

.mockup-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-logo {
    width: 250px;
    z-index: 2;
    border-radius: 60px; /* Premium app icon shape */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(108, 92, 231, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 0 30px rgba(108, 92, 231, 0.5));
    animation: float 6s infinite ease-in-out;
}

.glass-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(50px);
    z-index: 1;
}

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

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary-purple);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Gallery Slider */
.gallery-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    min-width: 280px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-controls button {
    background: var(--primary-purple);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: var(--accent-purple);
}

/* CTA */
.cta-section {
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-purple), #4834d4);
    padding: 80px 40px;
    border-radius: 30px;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.cta-card p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 15px 45px;
    background: var(--text-white);
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
}

.footer-logo img {
    height: 50px;
    border-radius: 12px; /* Professional rounded corners for smaller size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    transition: color 0.3s;
}

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

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-actions-mobile {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: rgba(12, 0, 24, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 35px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-right: 1px solid var(--glass-border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.4rem;
        font-weight: 600;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        margin: 0 auto 40px;
        font-size: 1.1rem;
    }

    .mockup-container {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .floating-logo {
        width: 180px;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

    .cta-card h2 {
        font-size: 2.2rem;
    }
}
