* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #0a0a0a;
    --color-black-light: #1a1a1a;
    --color-white: #ffffff;
    --color-orange: rgb(245, 146, 11);
    --color-orange-dark: rgb(220, 130, 10);
    --color-orange-light: rgba(245, 146, 11, 0.1);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --border-radius: 1rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(245, 146, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 146, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md) 0;
    z-index: 10;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(245, 146, 11, 0.3));
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 30px rgba(245, 146, 11, 0.5));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding-top: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

/* Syria Badge */
.syria-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(245, 146, 11, 0.4);
    animation: pulse 2s ease-in-out infinite, fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.syria-badge::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: var(--transition);
}

.syria-badge:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.syria-badge .badge-icon {
    width: 24px;
    height: 24px;
    animation: rotate 3s linear infinite;
}

.cta-badge {
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(245, 146, 11, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(245, 146, 11, 0.6), 0 0 40px rgba(245, 146, 11, 0.3);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.hero-title {
    margin-bottom: var(--spacing-md);
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-white);
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-white);
    opacity: 0.85;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

.download-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    transition: var(--transition);
    z-index: -1;
}

.download-btn:hover::before {
    transform: scale(1.05);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(245, 146, 11, 0.4);
}

.android-btn,
.ios-btn {
    background: var(--color-orange);
    color: var(--color-white);
}

.btn-icon {
    width: 32px;
    height: 32px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

.btn-store {
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out;
}

.phone-mockup {
    position: relative;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(245, 146, 11, 0.3);
    transition: var(--transition);
}

.phone-mockup:hover .app-screenshot {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(245, 146, 11, 0.4);
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(245, 146, 11, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 146, 11, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 10s;
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 12s;
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--color-black-light);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--color-white);
    opacity: 0.8;
    margin-bottom: var(--spacing-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-black);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(245, 146, 11, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 146, 11, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-orange);
    box-shadow: 0 20px 40px rgba(245, 146, 11, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--color-orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-orange);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--color-orange);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.feature-description {
    color: var(--color-white);
    opacity: 0.8;
    line-height: 1.7;
}

/* Screenshots Section */
.screenshots {
    padding: var(--spacing-xl) 0;
    background: var(--color-black);
}

.screenshots-slider {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.screenshot-item {
    flex: 0 0 auto;
    max-width: 300px;
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: scale(1.05);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(245, 146, 11, 0.2);
}

/* CTA Section */
.cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-black-light) 0%, var(--color-black) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(245, 146, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.cta-description {
    font-size: 1.3rem;
    color: var(--color-white);
    opacity: 0.85;
    margin-bottom: var(--spacing-lg);
}

.cta .download-buttons {
    justify-content: center;
}

/* Footer */
.footer {
    padding: var(--spacing-lg) 0;
    background: var(--color-black);
    border-top: 1px solid rgba(245, 146, 11, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo {
    height: 50px;
}

.footer-text {
    color: var(--color-white);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-image {
        order: -1;
    }

    .title-main {
        font-size: 3rem;
    }

    .title-sub {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .logo {
        height: 50px;
    }
}