/* WemoApp Modern Landing Page CSS */

 

:root {

    --primary: #00C853;

    --primary-dark: #00A844;

    --primary-light: #69F0AE;

    --secondary: #1a1a2e;

    --text-dark: #1a1a2e;

    --text-light: #6b7280;

    --text-white: #ffffff;

    --bg-light: #f8fafc;

    --bg-white: #ffffff;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);

    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);

    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius: 12px;

    --radius-lg: 20px;

    --transition: all 0.3s ease;

}

 

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

 

html {

    scroll-behavior: smooth;

}

 

body {

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    color: var(--text-dark);

    line-height: 1.6;

    background: var(--bg-white);

    overflow-x: hidden;

}

 

/* RTL Support */

html[dir="rtl"] body {

    font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

}

 

.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 24px;

}

 

/* Language Toggle */

.lang-toggle {

    position: fixed;

    top: 20px;

    right: 20px;

    z-index: 1000;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 16px;

    background: var(--bg-white);

    border: 1px solid #e5e7eb;

    border-radius: 50px;

    cursor: pointer;

    font-size: 14px;

    font-weight: 500;

    color: var(--text-dark);

    box-shadow: var(--shadow);

    transition: var(--transition);

}

 

html[dir="rtl"] .lang-toggle {

    right: auto;

    left: 20px;

}

 

.lang-toggle:hover {

    background: var(--primary);

    color: white;

    border-color: var(--primary);

}

 

.lang-icon {

    font-size: 18px;

}

 

/* Navigation */

.nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 0;

}

 

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}

 

.logo img {

    width: 45px;

    height: 45px;

    border-radius: 12px;

    object-fit: cover;

}

 

.logo-text {

    font-size: 24px;

    font-weight: 700;

    color: var(--text-dark);

}

 

.nav-links {

    display: flex;

    align-items: center;

    gap: 16px;

}

 

.nav-link {

    text-decoration: none;

    font-weight: 500;

    transition: var(--transition);

}

 

.btn-order {

    display: inline-flex;

    align-items: center;

    padding: 12px 24px;

    background: var(--primary);

    color: white;

    border-radius: 50px;

    font-weight: 600;

    box-shadow: var(--shadow);

}

 

.btn-order:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow: var(--shadow-lg);

}

 

/* Hero Section */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 40px 0 80px;

}

 

.hero-bg {

    position: absolute;

    top: -50%;

    right: -20%;

    width: 80%;

    height: 150%;

    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);

    border-radius: 50%;

    opacity: 0.1;

    z-index: -1;

}

 

html[dir="rtl"] .hero-bg {

    right: auto;

    left: -20%;

}

 

.hero-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}

 

.hero-title {

    font-size: clamp(2.5rem, 5vw, 4rem);

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 24px;

    color: var(--text-dark);

}

 

.hero-title .highlight {

    color: var(--primary);

}

 

.hero-subtitle {

    font-size: 1.25rem;

    color: var(--text-light);

    margin-bottom: 40px;

    max-width: 500px;

}

 

/* Download Buttons */

.download-buttons {

    display: flex;

    gap: 16px;

    flex-wrap: wrap;

}

 

.download-btn {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 24px;

    background: var(--secondary);

    color: white;

    text-decoration: none;

    border-radius: var(--radius);

    transition: var(--transition);

}

 

.download-btn:hover {

    transform: translateY(-3px);

    box-shadow: var(--shadow-lg);

}

 

.download-btn svg {

    flex-shrink: 0;

}

 

.download-btn .btn-text {

    display: flex;

    flex-direction: column;

}

 

.download-btn .small {

    font-size: 11px;

    opacity: 0.8;

}

 

.download-btn .big {

    font-size: 16px;

    font-weight: 600;

}

 

.download-btn.light {

    background: white;

    color: var(--text-dark);

}

 

/* Hero Image / Phone Mockup */

.hero-image {

    display: flex;

    justify-content: center;

    align-items: center;

}

 

.phone-mockup {

    position: relative;

    width: 280px;

    height: 560px;

    background: var(--secondary);

    border-radius: 40px;

    padding: 12px;

    box-shadow: var(--shadow-xl);

}

 

.phone-mockup::before {

    content: '';

    position: absolute;

    top: 20px;

    left: 50%;

    transform: translateX(-50%);

    width: 80px;

    height: 25px;

    background: #000;

    border-radius: 20px;

    z-index: 10;

}

 

.phone-screen {

    width: 100%;

    height: 100%;

    background: linear-gradient(180deg, var(--primary-light) 0%, white 30%);

    border-radius: 30px;

    overflow: hidden;

    padding: 50px 20px 20px;

}

 

.app-preview {

    background: white;

    border-radius: 20px;

    padding: 20px;

    box-shadow: var(--shadow);

}

 

.app-header {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    font-weight: 600;

    font-size: 18px;

}

 

.app-logo {

    width: 36px;

    height: 36px;

    background: var(--primary);

    color: white;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

}

 

.app-categories {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

}

 

.category-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    padding: 16px 12px;

    background: var(--bg-light);

    border-radius: var(--radius);

    font-size: 13px;

    font-weight: 500;

    transition: var(--transition);

}

 

.category-item:hover {

    background: var(--primary-light);

    transform: scale(1.05);

}

 

.category-icon {

    font-size: 28px;

}

 

/* Services Section */

.services {

    padding: 100px 0;

    background: var(--bg-light);

}

 

.section-title {

    font-size: clamp(2rem, 4vw, 2.75rem);

    font-weight: 800;

    text-align: center;

    margin-bottom: 16px;

    color: var(--text-dark);

}

 

.section-subtitle {

    font-size: 1.125rem;

    color: var(--text-light);

    text-align: center;

    max-width: 600px;

    margin: 0 auto 60px;

}

 

.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 24px;

}

 

.service-card {

    background: white;

    padding: 32px;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    text-align: center;

}

 

.service-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

}

 

.service-icon {

    font-size: 48px;

    margin-bottom: 20px;

}

 

.service-card h3 {

    font-size: 1.25rem;

    font-weight: 700;

    margin-bottom: 12px;

    color: var(--text-dark);

}

 

.service-card p {

    color: var(--text-light);

    font-size: 0.95rem;

}

 

/* Features Section */

.features {

    padding: 100px 0;

}

 

.features-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

 

.features-text .section-title {

    text-align: left;

    margin-bottom: 40px;

}

 

html[dir="rtl"] .features-text .section-title {

    text-align: right;

}

 

.feature-list {

    display: flex;

    flex-direction: column;

    gap: 28px;

}

 

.feature-item {

    display: flex;

    gap: 20px;

    align-items: flex-start;

}

 

.feature-item .feature-icon {

    width: 56px;

    height: 56px;

    min-width: 56px;

    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

}

 

.feature-info h4 {

    font-size: 1.125rem;

    font-weight: 700;

    margin-bottom: 6px;

    color: var(--text-dark);

}

 

.feature-info p {

    color: var(--text-light);

    font-size: 0.95rem;

}

 

/* Stats Card */

.features-visual {

    display: flex;

    justify-content: center;

}

 

.stats-card {

    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);

    padding: 48px;

    border-radius: var(--radius-lg);

    display: flex;

    flex-direction: column;

    gap: 40px;

    box-shadow: var(--shadow-xl);

}

 

.stat {

    text-align: center;

    color: white;

}

 

.stat-number {

    display: block;

    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 8px;

}

 

.stat-label {

    font-size: 1rem;

    opacity: 0.9;

}

 

/* CTA Section */

.cta {

    padding: 100px 0;

    background: linear-gradient(135deg, var(--secondary) 0%, #16162c 100%);

}

 

.cta-content {

    text-align: center;

    color: white;

}

 

.cta h2 {

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    margin-bottom: 16px;

}

 

.cta p {

    font-size: 1.25rem;

    opacity: 0.8;

    margin-bottom: 40px;

}

 

.cta .download-buttons {

    justify-content: center;

}

 

/* Footer */

.footer {

    padding: 60px 0 30px;

    background: var(--bg-light);

}

 

.footer-content {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 40px;

    border-bottom: 1px solid #e5e7eb;

}

 

.footer-brand .logo {

    margin-bottom: 16px;

}

 

.footer-desc {

    color: var(--text-light);

    max-width: 280px;

}

 

.footer-links h4 {

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 20px;

    color: var(--text-dark);

}

 

.footer-links ul {

    list-style: none;

}

 

.footer-links li {

    margin-bottom: 12px;

}

 

.footer-links a {

    color: var(--text-light);

    text-decoration: none;

    transition: var(--transition);

}

 

.footer-links a:hover {

    color: var(--primary);

}

 

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 30px;

    flex-wrap: wrap;

    gap: 20px;

}

 

.footer-bottom p {

    color: var(--text-light);

    font-size: 0.9rem;

}

 

.social-links {

    display: flex;

    gap: 16px;

}

 

.social-links a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    background: white;

    border-radius: 50%;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);

}

 

.social-links a:hover {

    background: var(--primary);

    transform: translateY(-3px);

}

 

.social-links img {

    width: 20px;

    height: 20px;

}

 

/* Responsive Design */

@media (max-width: 1024px) {

    .hero-content {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 40px;

    }

 

    .hero-subtitle {

        margin-left: auto;

        margin-right: auto;

    }

 

    .download-buttons {

        justify-content: center;

    }

 

    .hero-image {

        order: -1;

    }

 

    .phone-mockup {

        width: 240px;

        height: 480px;

    }

 

    .features-content {

        grid-template-columns: 1fr;

        gap: 60px;

    }

 

    .features-text .section-title {

        text-align: center;

    }

 

    html[dir="rtl"] .features-text .section-title {

        text-align: center;

    }

 

    .feature-item {

        max-width: 400px;

        margin: 0 auto;

    }

 

    .footer-content {

        grid-template-columns: 1fr 1fr;

    }

}

 

@media (max-width: 768px) {

    .hero {

        padding: 20px 0 60px;

        min-height: auto;

    }

 

    .hero-title {

        font-size: 2rem;

    }

 

    .hero-subtitle {

        font-size: 1rem;

    }

 

    .download-btn {

        padding: 12px 18px;

    }

 

    .download-btn .big {

        font-size: 14px;

    }

 

    .phone-mockup {

        width: 200px;

        height: 400px;

    }

 

    .phone-mockup::before {

        width: 60px;

        height: 20px;

        top: 15px;

    }

 

    .phone-screen {

        padding: 40px 12px 12px;

    }

 

    .services {

        padding: 60px 0;

    }

 

    .services-grid {

        grid-template-columns: 1fr;

    }

 

    .features {

        padding: 60px 0;

    }

 

    .stats-card {

        padding: 32px;

        flex-direction: row;

        flex-wrap: wrap;

        justify-content: center;

    }

 

    .stat {

        min-width: 120px;

    }

 

    .stat-number {

        font-size: 2rem;

    }

 

    .cta {

        padding: 60px 0;

    }

 

    .footer-content {

        grid-template-columns: 1fr;

        text-align: center;

    }

 

    .footer-brand .logo {

        justify-content: center;

    }

 

    .footer-desc {

        margin: 0 auto;

    }

 

    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }

}

 

@media (max-width: 480px) {

    .container {

        padding: 0 16px;

    }

 

    .lang-toggle {

        top: 12px;

        right: 12px;

        padding: 8px 12px;

        font-size: 12px;

    }

 

    html[dir="rtl"] .lang-toggle {

        left: 12px;

    }

 

    .nav {

        padding: 12px 0;

    }

 

    .logo img {

        width: 36px;

        height: 36px;

    }

 

    .logo-text {

        font-size: 20px;

    }

 

    .btn-order {

        padding: 10px 18px;

        font-size: 14px;

    }

 

    .hero-title {

        font-size: 1.75rem;

    }

 

    .download-buttons {

        flex-direction: column;

        align-items: center;

    }

 

    .download-btn {

        width: 100%;

        max-width: 280px;

        justify-content: center;

    }

 

    .section-title {

        font-size: 1.75rem;

    }

 

    .section-subtitle {

        font-size: 1rem;

        margin-bottom: 40px;

    }

 

    .service-card {

        padding: 24px;

    }

 

    .feature-item {

        flex-direction: column;

        text-align: center;

        align-items: center;

    }

}

 

/* Animation Classes */

@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

 

.hero-content {

    animation: fadeInUp 0.8s ease-out;

}

 

.service-card {

    animation: fadeInUp 0.6s ease-out;

}

 

/* Smooth scrolling for all browsers */

@media (prefers-reduced-motion: no-preference) {

    html {

        scroll-behavior: smooth;

    }

}

 

/* High contrast mode support */

@media (prefers-contrast: high) {

    :root {

        --primary: #008040;

        --text-light: #4a4a4a;

    }

}

 

/* Print styles */

@media print {

    .lang-toggle,

    .download-buttons,

    .hero-image {

        display: none;

    }

}