/* ==========================================================================
   Custom Fonts
   ========================================================================== */
@font-face {
    font-family: 'Dubai';
    src: url('assets/fonts/Dubai/DUBAI-LIGHT.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Dubai';
    src: url('assets/fonts/Dubai/DUBAI-REGULAR.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Dubai';
    src: url('assets/fonts/Dubai/DUBAI-MEDIUM.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Dubai';
    src: url('assets/fonts/Dubai/DUBAI-BOLD.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Expo Arabic';
    src: url('assets/fonts/Expo_Arabic/EXPO_ARABIC_LIGHT.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Expo Arabic';
    src: url('assets/fonts/Expo_Arabic/EXPO_ARABIC_BOOK.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Expo Arabic';
    src: url('assets/fonts/Expo_Arabic/EXPO_ARABIC_MEDIUM.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Expo Arabic';
    src: url('assets/fonts/Expo_Arabic/EXPO_ARABIC_BOLD.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    color-scheme: light;
    /* Brand Colors extracted from logo */
    --primary: #004e4b; /* Deep logo teal */
    --primary-light: #007a75;
    --primary-dark: #002e2c;
    --accent: #f59e0b; /* Vibrant amber for CTAs */
    --accent-hover: #d97706;
    --white: #ffffff;
    
    /* Text Colors */
    --text-main: #0f172a; /* Slate 900 */
    --text-muted: #475569; /* Slate 600 */
    --text-light: #94a3b8; /* Slate 400 */
    
    /* Backgrounds */
    --bg-body: #ffffff;
    --bg-light: #f8fafc; /* Slate 50 */
    --bg-card: #ffffff;
    
    /* Layout & Utilities - Default to Arabic Font */
    --font-heading: 'Expo Arabic', sans-serif;
    --font-body: 'Expo Arabic', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: 5rem 0;
}

/* Language Specific Font Overrides */
[lang="en"] {
    --font-heading: 'Dubai', sans-serif;
    --font-body: 'Dubai', sans-serif;
}

[lang="ur"] {
    --font-heading: 'Expo Arabic', sans-serif;
    --font-body: 'Expo Arabic', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    background-color: var(--bg-body);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }

.section-padding { padding: var(--section-padding); }
.bg-light { background-color: var(--bg-light); }

.section-header {
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 0.25rem 0;
}

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

.logo-img {
    height: 48px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-main);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* ==========================================================================
   Language Selectors
   ========================================================================== */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropbtn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    font-family: inherit;
    transition: var(--transition);
}

.lang-dropbtn:hover {
    color: var(--primary);
}

.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}

.lang-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: var(--white);
    min-width: 120px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    z-index: 1001;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.lang-dropdown-content a {
    color: var(--text-main);
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: var(--transition);
}

.lang-dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.lang-dropdown-content a.active {
    font-weight: 700;
    color: var(--primary);
    background-color: rgba(0, 78, 75, 0.05);
}

[dir="ltr"] .lang-dropdown-content {
    right: auto;
    left: 0;
}

/* Mobile Language Selector */
.mobile-lang-selector {
    margin: 0 auto 1.5rem auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lang-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.lang-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lang-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--white);
    transition: var(--transition);
    text-decoration: none;
    font-weight: 500;
}

.lang-btn.active {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    font-weight: 700;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-body);
    z-index: 2000;
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 2rem;
    left: 2rem; /* Left because RTL */
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-btn {
    margin-top: 1rem;
    display: block;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 140px; /* Account for fixed header */
    padding-bottom: 5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(0,78,75,0.05) 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(0, 78, 75, 0.15);
}

.shape-2 {
    bottom: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(245, 158, 11, 0.15);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent-hover);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to left, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--bg-light);
}

.hero-image-wrapper {
    position: relative;
}

.hero-mockup-scene {
    position: relative;
    width: 100%;
    height: 600px;
}

/* Mockups */
.mockup {
    position: absolute;
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
}

.mockup-web {
    width: 120%;
    max-width: 600px;
    left: -10%;
    top: 5%;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.browser-header {
    height: 30px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 6px;
    border-bottom: 1px solid #e2e8f0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mockup-mobile {
    width: 200px;
    height: auto;
    right: 5%;
    bottom: 5%;
    z-index: 2;
    background: transparent;
    box-shadow: none;
    border: none;
}

.mockup-mobile img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.pulse-animation {
    animation: float 6s ease-in-out infinite;
}

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


/* ==========================================================================
   Trust / Partners Section
   ========================================================================== */
.trust-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: var(--white);
}

.trust-text {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trust-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}


/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary);
    transition: height 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 78, 75, 0.05);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-muted);
}

/* ==========================================================================
   Target Audience Section
   ========================================================================== */
.audience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.audience-desc {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.audience-list i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.audience-list strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.audience-list span {
    color: var(--text-muted);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.aud-card {
    height: 200px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.aud-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,78,75,0.85) 0%, rgba(0,78,75,0.2) 100%);
    z-index: 1;
    transition: var(--transition);
}

.aud-card i, .aud-card span {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.aud-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.aud-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.aud-card:hover .aud-overlay {
    background: linear-gradient(to top, rgba(0,78,75,0.95) 0%, rgba(0,78,75,0.4) 100%);
}

.aud-card:hover .aud-icon {
    transform: scale(1.1);
    color: var(--accent);
}

/* Placeholders for audience background images */
.aud-1 { background-image: url('assets/resturent.jpg'); }
.aud-2 { background-image: url('assets/hotel.jpg'); }
.aud-3 { background-image: url('assets/cafe.jpg'); }
.aud-4 { background-image: url('assets/supermarket.jpg'); }

/* ==========================================================================
   Platform & App Section
   ========================================================================== */
.platform {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.platform-container {
    position: relative;
    z-index: 2;
}

.app-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.download-title {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--text-main);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.store-btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.store-btn i {
    font-size: 2rem;
}

.btn-text {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.small-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.large-text {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.phones-container {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
}

.phone-img {
    position: absolute;
    width: 250px;
    height: auto;
    transition: var(--transition);
}

.phone-left {
    left: 20%;
    transform: rotate(-10deg) translateY(20px);
    z-index: 1;
}

.phone-right {
    right: 20%;
    transform: rotate(5deg);
    z-index: 2;
}

.phones-container:hover .phone-left { transform: rotate(-15deg) translateY(0px) scale(1.05); }
.phones-container:hover .phone-right { transform: rotate(10deg) translateY(-10px) scale(1.05); }

/* Decorative Elements */
.platform::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 60%);
    opacity: 0.4;
    z-index: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--text-main);
    color: var(--bg-light);
    padding-top: 5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    /* In case the white logo isn't fully visible, we can adjust here */
    filter: brightness(0) invert(1); 
}

.footer-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.links-col a {
    color: var(--text-light);
}

.links-col a:hover {
    color: var(--primary-light);
    padding-right: 5px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.contact-list i {
    color: var(--accent);
    font-size: 1.25rem;
}

.footer-bottom {
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--text-light);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons, .hero-stats {
        justify-content: center;
    }
    
    .hero-mockup-scene {
        height: 500px;
        margin-top: 3rem;
    }
    .mockup-web {
        left: 0;
        width: 100%;
    }
    
    .audience-wrapper {
        grid-template-columns: 1fr;
    }
    
    .audience-content {
        text-align: center;
    }
    
    .audience-list {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0 auto;
        text-align: right;
    }
    
    .audience-list li {
        justify-content: flex-start;
        text-align: right;
    }
    
    .platform-container {
        text-align: center;
    }
    
    .app-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn, .lang-dropdown {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        display: none; /* Hide complex elements on small mobile */
    }
    
    .phones-container {
        height: 400px;
    }
    
    .phone-img {
        width: 180px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Simple Animation Classes for JS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   LTR (English) Specific Styles
   ========================================================================== */
[dir="ltr"] .nav-link::after {
    right: auto;
    left: 0;
}

[dir="ltr"] .close-menu {
    left: auto;
    right: 2rem;
}

[dir="ltr"] .mockup-web {
    left: auto;
    right: -10%;
}

[dir="ltr"] .mockup-mobile {
    right: auto;
    left: 5%;
}

[dir="ltr"] .btn-text {
    text-align: left;
}

@media (max-width: 1024px) {
    [dir="ltr"] .audience-list li {
        text-align: left;
    }
    
    [dir="ltr"] .mockup-web {
        right: 0;
        left: 0;
    }
}
