﻿/* Reset and Base Styles */
:root {
    --nav-height: 80px;
    --primary-color: #1a1a1a;
    --secondary-color: #5a5a5a;
    --accent-color: #F9D9A9;
    --accent-color-dark: #E8C88A;
    --accent-color-light: #FFF4E0;
    --main-color-1: #F5F3F0;
    --main-color-2: #E8E4DD;
    --background-light: #fafafa;
    --background-white: #ffffff;
    --border-color: #e8e8e8;
    --border-color-light: #f0f0f0;
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.18);
    --shadow-colored: 0 8px 32px rgba(249, 217, 169, 0.25);
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --border-radius-large: 28px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-family: 'Careem', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --gradient-primary: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(249, 217, 169, 0.1) 0%, rgba(232, 200, 138, 0.05) 100%);
}

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

*::before,
*::after {
    box-sizing: border-box;
}

/* Advanced Animation Primitives */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-slide-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Title Animations */
@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes titleScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(249, 217, 169, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(249, 217, 169, 0.5);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.animate-title {
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-title-delay-1 {
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    opacity: 0;
}

.animate-title-delay-2 {
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
    opacity: 0;
}

/* Image rendering: let browsers use best quality scaling */
img, svg {
    image-rendering: auto; /* avoid pixelation on deploy */
    max-width: 100%;
    height: auto;
}

/* Apply sharper rendering to key mockups */
.phones-image,
.cta-phones,
.phone-mockup,
.step-mockup,
.card-mockup,
.icon {
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    scrollbar-width: thin;
    scrollbar-color: var(--main-color-2) transparent;
}

/* Webkit scrollbar styling */
html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--main-color-2);
    border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

body {
    font-family: var(--font-family);
    background-color: var(--background-white);
    color: var(--primary-color);
    line-height: 1.6;
    padding-top: var(--nav-height);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Responsive container padding */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

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

/* Header/Navbar Styles */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 243, 240, 0.98) 100%);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    height: var(--nav-height);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color-light);
    transition: var(--transition);
}

.navbar:hover {
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--accent-color);
}

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

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-link {
    display: inline-flex;
}

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

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(44, 44, 44, 0.05);
}

/* .nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    background-color: rgba(44, 44, 44, 0.05);
} */

/* Animated underline for navbar links */
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #2c2c2c;
    border-radius: 2px;
    transition: width 0.25s ease;
}

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

.nav-link.active {
    color: #2c2c2c;
    font-weight: 600;
}

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

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

/* Mobile menu toggle (hidden on desktop) */
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    color: var(--primary-color);
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.menu-toggle:hover {
    background-color: rgba(44, 44, 44, 0.05);
}

.menu-toggle:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.language-link {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    transition: all 0.3s ease;
}

.language-link:hover {
    color: #000000;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.get-app-btn {
    background: linear-gradient(135deg, var(--main-color-2) 0%, var(--accent-color) 100%);
    color: #000000;
    border: 2px solid var(--main-color-2);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(214, 205, 194, 0.3);
}

.get-app-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.get-app-btn:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffd700 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(214, 205, 194, 0.4);
    border-color: var(--accent-color);
    will-change: transform, box-shadow;
}

.get-app-btn:hover::before {
    left: 100%;
}

.get-app-btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.get-app-btn:active {
    transform: translateY(0);
}

/* Hero Section Styles */
.hero-section {
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--main-color-1) 0%, #ffffff 30%, var(--main-color-1) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Absolute decorative layer holding shapes and stars */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    /* remove tiny blur that softens SVG edges on some browsers */
    filter: none;
    opacity: 0.35;
}

.bg-shape-1 { top: 0; right: -40px; width: 280px; height: auto; opacity: 0.4; }
.bg-shape-2 { bottom: 0; right: -60px; width: 320px; height: auto; opacity: 0.3; }

.star { 
    position: absolute; 
    width: 34px; 
    height: auto; 
    opacity: 0.9; 
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.7)) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
    animation: twinkle 3.5s ease-in-out infinite alternate; 
}
.star-a { top: 10%; left: 10%; width: 100px; animation-delay: .1s; }
.star-b { top: 26%; right: 18%; width: 100px; animation-delay: .6s; }


@keyframes twinkle { from { transform: translateY(0) scale(1); opacity: .45; } to { transform: translateY(-6px) scale(1.05); opacity: .85; } }

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2; /* above decorations */
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: titleFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--secondary-color);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

.app-store-btn {
    height: 60px;
    width: auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius);
    border: none;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.app-store-btn::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: left 0.5s;
}

.app-store-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.app-store-btn:hover::before {
    left: 100%;
}

.app-store-btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.app-store-btn:active {
    transform: translateY(-1px);
}

.phones-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

/* Subtle float for hero and footer mockups */
/* .cta-phones {
    animation: floatY 6s ease-in-out infinite alternate;
    will-change: transform;
} */

/* Slight emphasis on hoverable cards */
.reveal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.08);
    transition: transform 250ms ease, box-shadow 250ms ease;
}

/* Ensure in-page anchors donâ€™t hide under fixed navbar */
section {
    scroll-margin-top: var(--nav-height);
}

/* RTL language support */
[dir="rtl"] body {
    direction: rtl;
}

[dir="rtl"] .nav-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    /* Keep logical order for Arabic so menu starts with
       "Ø§Ù„Ù…Ø²Ø§ÙŠØ§" then "Ù…Ù† Ù†Ø­Ù†" from the right side. */
    flex-direction: row;
    gap: 30px;
}

/* Enhancements: How It Works counter pill */
.steps-container .step-number {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 9999px;
    border: 1px solid #e6e6e6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 36px;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

[dir="rtl"] .steps-container .step-number {
    position: absolute;
    right: 12px;
    top: -8px; /* sit near the step title, not the middle */
    transform: none;
    margin: 0;
    direction: ltr;
    unicode-bidi: isolate;
    text-align: center;
}

[dir="rtl"] .nav-actions {
    flex-direction: row-reverse;
    gap: 20px;
}

/* Swap paddings/margins for common patterns in RTL */
[dir="rtl"] .feature-item,
[dir="rtl"] .contact-item,
[dir="rtl"] .step-item {
    direction: rtl;
}

/* RTL tweaks for How It Works timeline */
[dir="rtl"] .steps-container {
    padding-right: 40px;
    padding-left: 0;
}

[dir="rtl"] .steps-container::before {
    right: 20px;
    left: auto;
}

[dir="rtl"] .step-content {
    align-items: flex-end;
    padding-right: 72px; /* extra space for the counter pill */
    padding-left: 0;
}

[dir="rtl"] .step-number {
    margin-right: -20px;
    margin-left: 0;
    /* Keep fraction order correct in RTL (show 2/5, not 5/2) */
    direction: ltr;
    unicode-bidi: isolate;
    text-align: center;
}

[dir="rtl"] .step-title {
    text-align: right;
}

[dir="rtl"] .step-description {
    text-align: right;
}

/* Ensure SVG icons align nicely in RTL blocks */
[dir="rtl"] .contact-icon {
    margin-left: 0;
}

/* Keep hero centered but allow text alignment to flip inside text blocks */
[dir="rtl"] .hero-content {
    text-align: center;
}

[dir="rtl"] .features-header,
[dir="rtl"] .about-text,
[dir="rtl"] .how-it-works-header,
[dir="rtl"] .join-us-header,
[dir="rtl"] .contact-header,
[dir="rtl"] .contact-details,
[dir="rtl"] .cta-left,
[dir="rtl"] .faq-header {
    text-align: right;
}

[dir="rtl"] .contact-content,
[dir="rtl"] .features-grid,
[dir="rtl"] .join-us-grid {
    direction: rtl;
}

.phones-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: titleFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.phones-image:hover {
    transform: translateY(-10px) scale(1.02);
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--main-color-1) 100%);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.2;
}

.mission-description {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

.mission-description:last-child {
    margin-bottom: 0;
}

.commitment-section {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #fbfbfb 0%, #f8f9fa 100%);
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.commitment-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 25px;
    line-height: 1.2;
}

.commitment-description {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

.commitment-description:last-child {
    margin-bottom: 0;
}

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

.about-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 450px;
    height: 750px;
    opacity: 0;
    border-radius: 1000px;
    padding: 40px;
    gap: 10px;
    transform: translateX(-50px) scale(0.9);
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: titleFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.about-phone:hover .phone-mockup {
    transform: translateX(0) scale(1.05) rotate(2deg);
    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.2));
}

.about-text {
    padding-left: 40px;
}

.about-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 35px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color-2), var(--accent-color));
    border-radius: 2px;
    animation: titleSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.about-description {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 400;
}

.about-description:last-child {
    margin-bottom: 0;
}

/* Mission Section - Enhanced Design */
.mission-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--main-color-1) 0%, #ffffff 50%, var(--main-color-1) 100%);
    position: relative;
    overflow: hidden;
}

[dir="rtl"] .mission-section {
    direction: rtl;
}

[dir="rtl"] .mission-content {
    text-align: center;
}

[dir="rtl"] .mission-title {
    text-align: center;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 217, 169, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 217, 169, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mission-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.mission-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ffd700, var(--accent-color));
    border-radius: 2px;
}

.mission-description {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: left;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
    position: relative;
}

.mission-description::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), #ffd700);
    border-radius: 2px;
    opacity: 0.6;
}

[dir="rtl"] .mission-description {
    text-align: right;
    padding: 0 30px;
}

[dir="rtl"] .mission-description::before {
    left: auto;
    right: -10px;
}

.mission-description:last-child {
    margin-bottom: 0;
}

/* Commitment Section - Enhanced Card Design */
.commitment-section {
    margin-top: 80px;
    padding: 70px 60px;
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color-1) 100%);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    border-left: 5px solid var(--accent-color);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.commitment-section:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(249, 217, 169, 0.3);
    border-left-color: var(--accent-color-dark);
}

[dir="rtl"] .commitment-section {
    border-left: none;
    border-right: 6px solid var(--accent-color);
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(249, 217, 169, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.commitment-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(249, 217, 169, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-20px, 20px);
}

.commitment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: center;
    position: relative;
}

.commitment-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ffd700, var(--accent-color));
    border-radius: 2px;
}

.commitment-description {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: left;
    font-weight: 400;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 25px;
}

.commitment-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), #ffd700);
    border-radius: 2px;
    opacity: 0.7;
}

[dir="rtl"] .commitment-description {
    text-align: right;
    padding-left: 0;
    padding-right: 25px;
}

[dir="rtl"] .commitment-description::before {
    left: auto;
    right: 0;
}

.commitment-description:nth-last-child(2) {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    /* color: var(--accent-color); */
    margin-top: 40px;
    margin-bottom: 20px;
    font-style: italic;
    padding: 25px;
    background: linear-gradient(135deg, rgba(249, 217, 169, 0.1) 0%, rgba(249, 217, 169, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(249, 217, 169, 0.2);
    position: relative;
}

.commitment-description:nth-last-child(2)::before {
    display: none;
}

.commitment-description:nth-last-child(2)::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #ffd700);
    border-radius: 2px;
}

.commitment-description:last-child {
    margin-bottom: 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin-top: 30px;
    position: relative;
}

.commitment-description:last-child::before {
    display: none;
}

.commitment-description:last-child::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ffd700, var(--accent-color));
    border-radius: 2px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--main-color-1) 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 217, 169, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 217, 169, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.how-it-works-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.how-it-works-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ffd700);
    border-radius: 2px;
}

.how-it-works-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: var(--secondary-color);
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.7;
    font-weight: 400;
}

/* Progress indicator */
.how-it-works-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 60px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
}

.progress-dot:hover {
    background: var(--main-color-2);
    transform: scale(1.4);
    border-color: var(--main-color-2);
}

.progress-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(249, 217, 169, 0.3);
}

.progress-dot.active:hover {
    transform: scale(1.5);
    box-shadow: 0 0 0 4px rgba(249, 217, 169, 0.4);
}

.progress-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--background-white);
    border-radius: 50%;
}

.steps-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color-1) 100%);
    border-radius: var(--border-radius-xl);
    padding: 55px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.step-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.step-item:nth-child(even) .step-content {
    order: 2;
}

.step-item:nth-child(even) .step-image {
    order: 1;
}

.step-item:hover {
    transform: translateY(-14px) scale(1.01);
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(249, 217, 169, 0.3);
    border-color: var(--accent-color);
}

.step-item:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s infinite;
}

/* Animated connector lines */
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-color), transparent);
    z-index: 1;
}

.step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.7; }
}

/* Step reveal animation */
.step-item {
    opacity: 0;
    transform: translateY(30px);
    animation: stepReveal 0.6s ease-out forwards;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }
.step-item:nth-child(5) { animation-delay: 0.5s; }

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

/* Floating animation for step numbers */
.step-number {
    animation: float 3s ease-in-out infinite;
}

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

.step-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--background-white);
    background: var(--gradient-accent);
    padding: 14px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 45px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.step-number::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: left 0.5s;
}

.step-item:hover .step-number {
    transform: scale(1.12) rotate(5deg);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(249, 217, 169, 0.4);
}

.step-item:hover .step-number::before {
    left: 100%;
}

.step-info {
    width: 100%;
}

.step-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: left;
    letter-spacing: -0.01em;
    position: relative;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.step-description {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.step-description:last-child {
    margin-bottom: 0;
}

.step-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.step-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 217, 169, 0.1) 0%, transparent 50%);
    border-radius: var(--border-radius-large);
    z-index: 1;
}

.step-mockup {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.step-item:hover .step-mockup {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

/* Join Us Section */
.join-us-section {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--main-color-1) 0%, #ffffff 50%, var(--main-color-1) 100%);
    position: relative;
    overflow: hidden;
}

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

.join-us-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    position: relative;
}

.join-us-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color-2), var(--accent-color));
    border-radius: 2px;
    transform-origin: center;
    animation: titleSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.join-us-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.join-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.join-us-card {
    border-radius: var(--border-radius-xl);
    padding: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    min-height: 420px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.join-us-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.join-us-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(249, 217, 169, 0.3);
    border-color: var(--accent-color);
}

.join-us-card:hover::before {
    opacity: 1;
}

.join-us-card.card-1 {
    background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
}

.join-us-card.card-2 {
    background: linear-gradient(135deg, var(--main-color-2) 0%, var(--main-color-1) 100%);
}

.join-us-card.card-3 {
    background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
}

.join-us-card.card-4 {
    background: linear-gradient(135deg, var(--main-color-2) 0%, var(--main-color-1) 100%);
}

.card-image {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.card-mockup {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.2));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.join-us-card:hover .card-mockup {
    transform: translateY(-10px) scale(1.1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.card-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--main-color-1) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-header {
    padding-right: 40px;
}

.faq-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color-2), var(--accent-color));
    border-radius: 2px;
    animation: titleSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 2px solid var(--main-color-2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color-1) 100%);
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 0 20px;
    overflow: hidden;
}

.faq-item:hover {
    background: linear-gradient(135deg, var(--main-color-1) 0%, #ffffff 100%);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #2c2c2c;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c2c2c;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #666666;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
}

.faq-item:not(.active) .faq-icon {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

.faq-answer p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Us Section */
.contact-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, #ffffff 0%, var(--main-color-1) 100%);
    position: relative;
    overflow: hidden;
}

.contact-card {
    background: linear-gradient(135deg, #231F20 0%, #2a2526 100%);
    border-radius: 30px;
    padding: 70px 90px;
    max-width: 1200px;
    width: 100%;
    min-height: 550px;
    margin: 0 auto;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3), 0 0 0 2px var(--main-color-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.contact-card:hover {
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35), 0 0 0 2px var(--accent-color);
    transform: translateY(-5px);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(249, 217, 169, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ffd700);
    border-radius: 2px;
    transform-origin: center;
    animation: titleSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.contact-tagline {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 1;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #555555;
    border-radius: 50%;
    color: #ffffff;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 1;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background-color: rgba(58, 58, 58, 0.8);
    border: 1px solid rgba(74, 69, 70, 0.5);
    border-radius: var(--border-radius);
    padding: 16px;
    color: #ffffff;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(249, 217, 169, 0.1);
    background-color: rgba(58, 58, 58, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.send-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5d18a 100%);
    color: #000000;
    border: none;
    border-radius: var(--border-radius);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.send-btn::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: left 0.5s;
}

.send-btn:hover {
    background: linear-gradient(135deg, #f5d18a 0%, #f0c96b 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(249, 217, 169, 0.4);
}

.send-btn:hover::before {
    left: 100%;
}

.send-btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.send-btn:active {
    transform: translateY(-1px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0 0 0;
    background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 50%, var(--main-color-1) 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.cta-description {
    font-size: 1.4rem;
    color: var(--secondary-color);
    line-height: 1.7;
    margin: 0;
    max-width: 650px;
    font-weight: 400;
}

.cta-app-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-app-btn {
    height: 60px;
    width: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cta-app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.phones-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Pull image slightly to the edge of the section (no visible gap) */
    margin-right: -60px;
}

.cta-phones {
    width: 100%;
    height: auto;
    max-height: 600px;
    min-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
}

/* Responsive reset so image doesn't overflow on small screens */
@media (max-width: 1200px) {
    .phones-stack { margin-right: -30px; }
}
@media (max-width: 992px) {
    .cta-right { justify-content: center; }
    .phones-stack { margin-right: 0; }
}

/* Footer Section */
.footer-section {
    background-color: #ffffff;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e0e0e0;
}

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

.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    filter: brightness(0) saturate(100%);
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #2c2c2c;
    margin: 0;
    font-weight: 400;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 0;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #1a1a1a;
    transform: translateY(-1px);
}

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

/* Essential Features Section */
.features-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--main-color-1) 50%, #ffffff 100%);
    /* overflow: hidden; */
    /* padding: 100px 0; */
    position: relative;
}

/* Top mask to prevent previous section visuals peeking through when scrolled */
.features-section::before,
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px; /* taller mask to hide any previous visuals */
    background: #ffffff;
    z-index: 5; /* ensure it paints above previous section backgrounds */
    pointer-events: none;
}

.features-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color-1) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: 50px 70px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    overflow: hidden;
    transition: var(--transition);
}

.features-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 217, 169, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.features-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.features-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(249, 217, 169, 0.2);
    border-color: var(--accent-color);
}

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

.features-card:hover::after {
    transform: scaleX(1);
}

.features-header {
    text-align: left;
    margin-bottom: 36px; /* reduce empty space */
}

.features-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color-2), var(--accent-color));
    border-radius: 2px;
    animation: titleSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.features-title.revealed::after {
    transform: scaleX(1);
}

.features-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    max-width: 750px;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}

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

.feature-item {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color-1) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 217, 169, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.feature-item:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(249, 217, 169, 0.3);
    border-color: var(--accent-color);
    will-change: transform, box-shadow;
}

.feature-item:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s infinite;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(249, 217, 169, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.feature-icon .icon {
    width: 56px;
    height: 56px;
    filter: brightness(0) saturate(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    transform: scale(1.12) rotate(5deg);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(249, 217, 169, 0.3);
    background: var(--gradient-accent);
}

.feature-item:hover .feature-icon::before {
    width: 200%;
    height: 200%;
}

.feature-item:hover .feature-icon .icon {
    transform: scale(1.15);
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-title {
    color: #1a1a1a;
}

.feature-description {
    font-size: 1.15rem;
    color: var(--secondary-color);
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto;
    font-weight: 400;
}

/* Removed highlight-on-arrival effect per request */

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .join-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navbar Responsive */
    .menu-toggle { 
        display: inline-flex; 
        align-items: center; 
        justify-content: center; 
    }
    
    .nav-links { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-white);
        padding: 20px;
        box-shadow: var(--shadow-medium);
        border-top: 1px solid var(--border-color);
        z-index: 1001;
        flex-direction: column;
        gap: 16px;
        border-radius: 0 0 var(--border-radius-large) var(--border-radius-large);
    }
    
    .navbar.open .nav-links {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .language-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .get-app-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Hero section adjustments */
    .hero-section {
        padding: 60px 0 0 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .app-store-btn {
        height: 50px;
        width: 180px;
    }
    
    .phones-image {
        max-height: 400px;
    }
    
    /* Adjust decorative sizes on tablets */
    .bg-shape-1 { width: 200px; right: -20px; }
    .bg-shape-2 { width: 240px; right: -30px; }
    .star { width: 24px; opacity: 0.7; }
    
    /* How It Works Section Responsive */
    .how-it-works-section {
        padding: 80px 0;
    }
    
    .how-it-works-header {
        margin-bottom: 60px;
    }
    
    .how-it-works-title {
        font-size: 2.2rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1.1rem;
    }
    
    .steps-container {
        gap: 30px;
        padding: 0 10px;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .step-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .step-item:nth-child(even) .step-content,
    .step-item:nth-child(even) .step-image {
        order: unset;
    }
    
    .step-content {
        align-items: center;
        text-align: center;
    }
    
    .step-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .step-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .step-mockup {
        max-height: 300px;
    }
    
    /* Hide connector lines on mobile */
    .step-item:not(:last-child)::after,
    .step-item:not(:last-child)::before {
        display: none;
    }
    
    /* Progress indicator mobile */
    .how-it-works-progress {
        margin-bottom: 40px;
    }
    
    .progress-dot {
        width: 10px;
        height: 10px;
    }
    
    /* About Section Responsive */
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .phone-mockup {
        width: 350px;
        height: 580px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    

    /* Features section mobile */
    .features-section {
        padding: 60px 0;
    }

    .features-card {
        padding: 30px 20px;
        margin: 0;
        border-radius: var(--border-radius-large);
    }
    
    .features-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .features-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .features-subtitle {
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-item {
        padding: 24px 20px;
        text-align: center;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }
    
    .feature-icon .icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Navbar Mobile */
    .navbar {
        padding: 12px 0;
        height: 70px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .language-link {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .get-app-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 40px 0 0 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .app-buttons {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .app-store-btn {
        height: 45px;
        width: 160px;
    }
    
    .phones-image {
        max-height: 300px;
    }
    
    /* Hide decorative elements on mobile */
    .bg-shape-1,
    .bg-shape-2 {
        display: none;
    }
    
    .star {
        width: 20px;
        opacity: 0.5;
    }
    
    /* How It Works Section Mobile */
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .how-it-works-header {
        margin-bottom: 40px;
    }
    
    .how-it-works-title {
        font-size: 1.8rem;
    }
    
    .how-it-works-subtitle {
        font-size: 0.95rem;
    }
    
    .steps-container {
        gap: 20px;
        padding: 0;
    }
    
    .step-item {
        padding: 24px 16px;
        gap: 20px;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-mockup {
        max-height: 250px;
    }
    
    .step-number {
        padding: 10px 16px;
        min-width: 50px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    /* Join Us Section Responsive */
    .join-us-section {
        padding: 60px 0;
    }
    
    .join-us-title {
        font-size: 2rem;
    }
    
    .join-us-subtitle {
        font-size: 1rem;
    }
    
    .join-us-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .join-us-card {
        padding: 25px;
        min-height: 350px;
    }
    
    .card-mockup {
        max-height: 200px;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    /* Join Us Section Mobile */
    .join-us-section {
        padding: 40px 0;
    }
    
    .join-us-title {
        font-size: 1.8rem;
    }
    
    .join-us-subtitle {
        font-size: 0.95rem;
    }
    
    .join-us-card {
        padding: 20px;
        min-height: 300px;
    }
    
    .card-mockup {
        max-height: 180px;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    /* FAQ Section Responsive */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-header {
        padding-right: 0;
        text-align: center;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-subtitle {
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 15px 0;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* Contact Us Section Responsive */
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-card {
        padding: 40px 30px;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-tagline {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        gap: 25px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
    }
    
    .send-btn {
        align-self: stretch;
    }
    
    /* Contact Us Section Mobile */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
        margin: 0 10px;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-tagline {
        font-size: 0.95rem;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-label {
        font-size: 0.85rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .send-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* CTA Section Responsive */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .cta-app-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-app-btn {
        height: 50px;
    }
    
    .cta-phones {
        max-height: 500px;
        min-height: 400px;
    }
    
    /* Footer Section Responsive */
    .footer-section {
        padding: 25px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        flex: none;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-logo-img {
        height: 30px;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-app-btn {
        height: 45px;
    }
    
    .cta-phones {
        max-height: 400px;
        min-height: 300px;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 40px 0;
    }
    
    .phone-mockup {
        width: 280px;
        height: 460px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    /* Features Mobile */
    .features-title {
        font-size: 1.8rem;
    }
    
    .features-subtitle {
        font-size: 0.95rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .app-store-btn {
        width: 140px;
        height: 42px;
    }
    
    .features-card {
        padding: 24px 16px;
    }
    
    .feature-item {
        padding: 20px 16px;
    }
    
    .contact-card {
        padding: 24px 16px;
    }
    
    .join-us-card {
        padding: 20px 16px;
        min-height: 280px;
    }
    
    /* Mission Section Mobile - Enhanced Design */
    .mission-section {
        padding: 100px 0;
    }
    
    .mission-title {
        font-size: 2.8rem;
        margin-bottom: 50px;
    }
    
    .mission-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .commitment-section {
        margin-top: 60px;
        padding: 50px 30px;
        border-radius: 20px;
    }
    
    .commitment-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .commitment-description {
        font-size: 1.1rem;
        margin-bottom: 22px;
        padding-left: 20px;
    }
    
    .commitment-description:nth-last-child(2) {
        font-size: 1.3rem;
        margin-top: 35px;
        padding: 20px;
        border-radius: 12px;
    }
    
    .commitment-description:last-child {
        font-size: 1.5rem;
        margin-top: 25px;
    }
    
    /* Mission Section RTL Mobile */
    [dir="rtl"] .mission-description {
        padding: 0 15px;
    }
    
    [dir="rtl"] .commitment-description {
        padding-right: 15px;
    }
}
/* Clean feature item design to match reference image */
.feature-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.feature-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: none !important;
}

.feature-item::before {
    display: none !important;
}

.feature-icon {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef;
}

/* Main features card styling to match reference */
.features-card {
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


.features-section::before {
    display: none !important;
}

/* Minimal navbar styling with simple underlines */
.nav-link {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 8px 0 !important;
    position: relative !important;
}

.nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: var(--accent-color) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1 !important;
}

.nav-link:hover {
    background: transparent !important;
    transform: none !important;
}

/* Apply Careem font to entire landing page */
* {
    font-family: 'Careem', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

body {
    font-family: 'Careem', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Content Pages Styles (Privacy, Terms, About) */
.content-page {
    padding: 110px 0 85px;
    background: radial-gradient(circle at 12% 10%, rgba(249, 217, 169, 0.15), transparent 45%), radial-gradient(circle at 85% 12%, rgba(232, 200, 138, 0.12), transparent 42%), linear-gradient(180deg, var(--main-color-1) 0%, #ffffff 35%, var(--main-color-1) 100%);
    background-size: 200% 200%;
    animation: gradientShift 18s ease infinite;
    min-height: calc(100vh - var(--nav-height));
    position: relative;
    overflow: hidden;
}

.content-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(214, 205, 194, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(237, 233, 227, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 64px;
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color-1) 100%);
    border-radius: 32px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12), 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid var(--main-color-2);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    animation: titleFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.content-wrapper:hover {
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.14), 0 0 0 1px var(--accent-color);
    transform: translateY(-6px) scale(1);
}

.content-header-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.content-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.9rem;
    color: #3c3528;
    background: linear-gradient(135deg, rgba(249, 217, 169, 0.25), rgba(232, 200, 138, 0.18));
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--main-color-2);
    box-shadow: var(--shadow-sm);
}

.content-title {
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: titleFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color-2), var(--accent-color), var(--main-color-2));
    background-size: 200% 100%;
    border-radius: 3px;
    animation: shimmer 3s infinite, titleSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.content-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color-1) 100%);
    border: 1px solid var(--main-color-2);
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1f1f1f;
    box-shadow: var(--shadow-xs);
}

.meta-chip.soft {
    background: linear-gradient(135deg, var(--accent-color-light) 0%, #ffffff 100%);
    color: #3c3c3c;
}

.content-date {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-top: 6px;
    margin-bottom: 16px;
    font-weight: 600;
    padding: 12px 18px;
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color-1) 100%);
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    border-left: 5px solid var(--main-color-2);
    box-shadow: var(--shadow-xs);
    opacity: 0;
    transform: translateY(10px);
    animation: titleFadeIn 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.18s forwards;
    transition: all 0.3s ease;
}

.content-date:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-left-color: var(--accent-color);
}

.content-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 1.07rem;
    line-height: 1.85;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(20px);
    animation: titleFadeIn 0.75s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
}

.content-body p {
    margin: 0 0 16px;
    font-weight: 400;
    text-align: left;
    color: var(--secondary-color);
}

.content-body h2 {
    margin: 0 0 10px;
    padding: 0;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.2;
}

.content-lede-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color-light) 120%);
    border: 1px solid var(--main-color-2);
    border-left: 6px solid var(--accent-color);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    padding: 26px 30px;
    display: grid;
    gap: 14px;
}

.content-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}
.content-tag-row.tight {
    gap: 8px;
    margin-top: 12px;
}

.content-grid {
    display: grid;
    gap: 16px;
}

.content-grid.two-col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.content-section-grid {
    column-count: 2;
    column-gap: 18px;
}

.content-section-card {
    background: #ffffff;
    border: 1px solid var(--main-color-2);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    break-inside: avoid;
    width: 100%;
    margin-bottom: 18px;
}

.content-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--main-color-2) 0%, var(--accent-color) 100%);
    opacity: 0.65;
}

.content-section-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.content-section-card h2 {
    font-size: 1.6rem;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
    color: #121212;
}

.content-section-card p {
    margin: 0 0 12px;
    color: var(--secondary-color);
    line-height: 1.75;
    flex: 0 0 auto;
}

.content-section-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .content-section-grid {
        column-count: 1;
    }
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.pillar-card {
    margin: 0;
    background: linear-gradient(145deg, var(--accent-color-light) 0%, #ffffff 100%);
    border: 1px solid var(--main-color-2);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: var(--shadow-xs);
    color: var(--primary-color);
    line-height: 1.7;
}

.content-body ul,
.content-body ol {
    margin: 20px 0;
    padding-left: 28px;
    line-height: 1.9;
}

.content-body ul {
    list-style: none;
    padding-left: 22px;
}

.content-body ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-weight: 400;
}

.content-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.content-body ol li {
    margin-bottom: 10px;
    font-weight: 400;
    padding-left: 6px;
}

.content-body strong {
    font-weight: 600;
    color: var(--primary-color);
}

.content-body a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--main-color-2);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.content-body a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    transform: translateY(-1px);
}

.contact-info-box {
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color-1) 100%);
    border-left: 6px solid var(--main-color-2);
    padding: 32px 36px;
    margin: 20px 0 10px;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--main-color-2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12), 0 0 0 1px var(--accent-color);
    border-left-color: var(--accent-color);
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(214, 205, 194, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(40px, -40px);
    transition: all 0.4s ease;
}

.contact-info-box:hover::before {
    width: 190px;
    height: 190px;
    transform: translate(30px, -30px);
}

.contact-info-box p {
    margin-bottom: 10px;
    font-size: 1.02rem;
    position: relative;
    z-index: 1;
    color: var(--secondary-color);
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box strong {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.08rem;
}

.contact-info-box a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--main-color-2);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.contact-info-box a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    transform: translateY(-1px);
}

/* Footer Links */
.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 3px;
}

.footer-separator {
    color: var(--border-color);
    font-size: 0.9rem;
}

/* Responsive Content Pages */
@media (max-width: 768px) {
    .content-page {
        padding: 120px 0 90px;
    }
    
    .content-wrapper {
        padding: 60px 40px;
        margin: 0 16px;
        border-radius: 26px;
    }
    
    .content-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
        padding-bottom: 14px;
    }
    
    .content-title::after {
        width: 80px;
        height: 3px;
    }
    
    .content-date {
        font-size: 0.95rem;
        margin-bottom: 28px;
        padding: 10px 14px;
    }
    
    .content-body {
        font-size: 1rem;
        line-height: 1.75;
        gap: 26px;
    }
    
    .content-body p {
        margin-bottom: 14px;
        text-align: left;
    }
    
    .content-grid.two-col,
    .content-section-grid {
        grid-template-columns: 1fr;
    }
    
    .content-lede-card {
        padding: 20px 22px;
        gap: 10px;
    }
    
    .meta-chip {
        font-size: 0.9rem;
    }
    
    .pillar-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-info-box {
        padding: 24px 26px;
        margin: 24px 0;
    }
    
    .footer-links {
        margin-top: 12px;
        gap: 10px;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .content-page {
        padding: 100px 0 70px;
    }
    
    .content-wrapper {
        padding: 40px 24px;
        margin: 0 12px;
        border-radius: 20px;
    }
    
    .content-title {
        font-size: 1.9rem;
        padding-bottom: 12px;
    }
    
    .content-title::after {
        width: 70px;
        height: 3px;
    }
    
    .content-date {
        font-size: 0.9rem;
        margin-bottom: 24px;
        padding: 8px 12px;
        display: block;
    }
    
    .content-body {
        font-size: 0.95rem;
        line-height: 1.65;
        gap: 22px;
    }
    
    .content-body p {
        margin-bottom: 12px;
    }
    
    .content-lede-card {
        padding: 18px;
    }
    
    .content-tag-row {
        gap: 8px;
    }
    
    .meta-chip {
        font-size: 0.85rem;
    }
    
    .content-grid.two-col,
    .content-section-grid,
    .pillar-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        padding: 20px;
        margin: 22px 0;
    }
    
    .contact-info-box::before {
        width: 60px;
        height: 60px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-separator {
        display: none;
    }
}


