/* ===== CSS Variables ===== */
:root {
    --green-50: #ecfdf5;
    --green-100: #d1fae5;
    --green-200: #a7f3d0;
    --green-300: #6ee7b7;
    --green-400: #34d399;
    --green-500: #10b981;
    --green-600: #059669;
    --green-700: #047857;
    --green-800: #065f46;
    --green-900: #064e3b;

    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: var(--white);
    border-color: var(--green-500);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    border-color: var(--green-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: var(--white);
    color: var(--green-600);
    border-color: var(--green-500);
}

.btn-outline:hover {
    background: var(--green-50);
    border-color: var(--green-600);
    transform: translateY(-2px);
}

.btn-login {
    background: var(--white);
    color: var(--blue-600);
    border-color: var(--blue-500);
}

.btn-login:hover {
    background: var(--blue-50);
    border-color: var(--blue-700);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--green-700);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--green-50);
    border-color: var(--green-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-500), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--green-500), var(--blue-500));
    border-radius: 1px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--green-600);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-700);
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--white);
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-xl);
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-600);
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: var(--green-50);
    color: var(--green-600);
}

.mobile-nav-login {
    margin-top: auto;
    color: var(--blue-600);
}

.mobile-nav-cta {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: var(--white);
    text-align: center;
    font-weight: 600;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-bg-gradient::after {
    content: '';
    position: absolute;
    top: 100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--green-500), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-500), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== Hero Visual ===== */
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-mockup {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
}

.mockup-phone {
    width: 200px;
    background: var(--white);
    border-radius: 28px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-100);
    flex-shrink: 0;
}

.phone-notch {
    width: 60px;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    margin: 0 auto 12px;
}

.phone-screen {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 12px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.phone-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green-600);
}

.phone-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--gray-500);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
}

.phone-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: 10px;
    padding: 8px;
}

.phone-card-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-card-icon--blue {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
}

.phone-card-icon--green {
    background: linear-gradient(135deg, var(--green-400), var(--green-500));
}

.phone-card-icon i {
    width: 14px;
    height: 14px;
    color: var(--white);
}

.phone-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-card-title {
    font-size: 0.6rem;
    color: var(--gray-500);
}

.phone-card-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-800);
}

.mockup-dashboard {
    width: 280px;
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-100);
    flex-shrink: 0;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.dashboard-dots {
    display: flex;
    gap: 4px;
}

.dashboard-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dashboard-dots span:first-child {
    background: #ff5f57;
}

.dashboard-dots span:nth-child(2) {
    background: #ffbd2e;
}

.dashboard-dots span:nth-child(3) {
    background: #28ca42;
}

.dashboard-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

.dashboard-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-50);
    border-radius: 10px;
    padding: 10px;
}

.dashboard-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--gray-500);
}

.dashboard-card-header i {
    width: 14px;
    height: 14px;
}

.dashboard-card-value {
    margin-right: auto;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-800);
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
    padding-top: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--green-500), var(--green-300));
    border-radius: 3px 3px 0 0;
    min-height: 8px;
}

/* ===== Section Common ===== */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--green-600);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 16px;
}

.section-title-highlight {
    background: linear-gradient(135deg, var(--green-500), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    z-index: 1;
}

.about-description {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.about-feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(59, 130, 246, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px dashed var(--gray-200);
    border-radius: 50%;
}

.about-image-inner {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--green-500), var(--blue-500));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-image-inner i {
    width: 48px;
    height: 48px;
    color: var(--white);
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--green-500), var(--blue-500));
    opacity: 0;
    transition: var(--transition);
}

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

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    width: 28px;
    height: 28px;
    color: var(--green-600);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.feature-description {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== How It Works Section ===== */
.how-it-works {
    padding: 100px 0;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 160px;
    max-width: 200px;
}

.step-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-500);
    margin-bottom: 8px;
    opacity: 0.7;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.step-icon i {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.step-description {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(to left, var(--green-300), var(--blue-300));
    margin-top: 30px;
    opacity: 0.5;
}

/* ===== Why Tajmee Section ===== */
.why-tajmee {
    padding: 100px 0;
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-200);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.benefit-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.benefit-description {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--green-600), var(--blue-600));
    opacity: 0.95;
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-bg::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.4;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo {
    width: fit-content;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--green-600);
    color: var(--white);
}

.social-link i {
    width: 18px;
    height: 18px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--green-400);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--green-500);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ===== Download App Section ===== */
.download-app {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-50), var(--blue-50));
    position: relative;
    overflow: hidden;
}

.download-app::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.download-app::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.download-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.download-app-text {
    z-index: 1;
}

.download-description {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--gray-900);
    color: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid var(--gray-900);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.download-btn:hover {
    background: var(--gray-800);
    border-color: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.download-btn i {
    width: 22px;
    height: 22px;
}

.download-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.download-btn-small {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
}

.download-btn-main {
    font-size: 1rem;
    font-weight: 700;
}

.download-app-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.download-qr-codes {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.qr-code-img {
    width: 150px;
    height: 150px;
    border-radius: var(--radius);
    padding: 8px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-100);
}

.qr-code-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
}

.download-phone-mockup {
    margin-top: 16px;
}

.phone-mockup-inner {
    width: 200px;
    background: var(--white);
    border-radius: 28px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-100);
}

.phone-mockup-notch {
    width: 60px;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    margin: 0 auto 12px;
}

.phone-mockup-screen {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 12px;
}

.phone-mockup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.phone-mockup-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green-600);
}

.phone-mockup-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-mockup-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    border-radius: 10px;
    padding: 8px;
}

.phone-mockup-card i {
    width: 16px;
    height: 16px;
    color: var(--green-600);
}

/* ===== 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(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Language Selector ===== */
.language-selector {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-600);
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    background: var(--gray-100);
    color: var(--green-600);
}

.lang-btn i {
    width: 20px;
    height: 20px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    padding: 8px;
    display: none;
    z-index: 100;
    min-width: 140px;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.lang-option:hover {
    background: var(--green-50);
    color: var(--green-600);
}

.lang-option.active {
    background: var(--green-50);
    color: var(--green-600);
    font-weight: 600;
}

.lang-flag {
    font-size: 1.2rem;
}

.lang-name {
    font-size: 0.85rem;
}

/* ===== RTL Language Support ===== */
html[lang="ar"],
html[lang="ur"] {
    direction: rtl;
    text-align: right;
}

html[lang="en"] {
    direction: ltr;
    text-align: left;
}

html[lang="en"] .nav-link::after {
    bottom: 0;
    left: 0;
    right: auto;
}

html[lang="en"] .header-actions {
    flex-direction: row;
}

html[lang="en"] .mobile-nav {
    left: 0;
    right: auto;
}

html[lang="en"] .mobile-menu-close {
    left: auto;
    right: 16px;
}

html[lang="en"] .lang-dropdown {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-mockup {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 1.4rem;
    }

    .hero-mockup {
        flex-direction: column;
        align-items: center;
    }

    .mockup-phone {
        width: 180px;
    }

    .mockup-dashboard {
        width: 240px;
    }

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

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .step-connector {
        width: 2px;
        height: 24px;
        margin-top: 0;
        background: linear-gradient(to bottom, var(--green-300), var(--blue-300));
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat {
        flex: 1;
        min-width: 80px;
    }

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

    .cta-title {
        font-size: 1.3rem;
    }
}