/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Almarai:wght@400;700;800&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #D64531;
    --primary-dark: #B8321F;
    --primary-light: #E86A55;
    --white: #FFF8F0;
    --cream: #F8E8D4;
    --forest-green: #1B4D3E;
    --forest-dark: #0B3D23;
    --mint: #A5D6A7;
    --logo-cream: #FDF8E1;
    --black: #000000;
    --dark-gray: #333333;
    --light-gray: #F3E4D0;
    --text-dark: #1B4D3E;
    --text-light: #5A7A6E;
    --border-color: #E8D4BC;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(214, 69, 49, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-lg: 15px;
    --neon-glow: 0 0 20px rgba(214, 69, 49, 0.55);
    --city-bg: linear-gradient(135deg, #0B3D23 0%, #1B4D3E 50%, #2A6B55 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance Optimizations */
* {
    will-change: auto;
}

/* Reduce animations on scroll for better performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Disable heavy animations on low-end devices */
@media (max-width: 768px) {
    .parallax-bg,
    .city-skyline,
    .data-stream {
        transform: none !important;
    }
    
    section:hover {
        transform: none !important;
    }
    
    .content-card:hover,
    .app-card:hover {
        transform: translateY(-5px) !important;
    }
}

.animated-bus,
.city-skyline,
.data-stream,
.particle-container,
.floating-bus {
    will-change: transform, opacity;
}

/* GPU Acceleration for smooth animations */
.home-section,
.apps-section,
.about-section {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Arabic Font - Modern and Clean */
[dir="rtl"] body,
[dir="rtl"] * {
    font-family: 'Tajawal', 'IBM Plex Sans Arabic', 'Arial', sans-serif;
    font-weight: 400;
}

/* Simple Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #D64531, #B8321F);
    z-index: 1000;
    transition: width 0.1s ease;
}


@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 
            0 8px 25px rgba(214, 69, 49, 0.4),
            0 0 20px rgba(214, 69, 49, 0.3);
    }
    50% { 
        box-shadow: 
            0 8px 25px rgba(214, 69, 49, 0.6),
            0 0 30px rgba(214, 69, 49, 0.5);
    }
}

@keyframes busBounce {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-3px);
    }
}

@keyframes roadMoveForward {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

/* Arabic Font Support */
[dir="rtl"] {
    font-family: 'Tajawal', 'Noto Sans Arabic', 'Cairo', 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

/* Better Arabic typography */
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
    font-family: 'Tajawal', 'Noto Sans Arabic', 'Cairo', 'Arial', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

[dir="rtl"] p,
[dir="rtl"] span,
[dir="rtl"] div {
    font-family: 'Tajawal', 'Noto Sans Arabic', 'Cairo', 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

/* Arabic text rendering improvements */
[dir="rtl"] {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga" 1, "kern" 1;
}

/* Better Arabic button styling */
[dir="rtl"] .btn {
    font-family: 'Tajawal', 'Noto Sans Arabic', 'Cairo', 'Arial', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Arabic navigation improvements */
[dir="rtl"] .nav-link {
    font-family: 'Tajawal', 'Noto Sans Arabic', 'Cairo', 'Arial', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background: 
        linear-gradient(135deg, var(--primary-color) 0%, rgba(214, 69, 49, 0.8) 50%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 
        0 8px 25px rgba(214, 69, 49, 0.5),
        0 0 20px rgba(214, 69, 49, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214, 69, 49, 0.3);
    font-weight: 700;
}

.btn-primary::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.6s ease;
    z-index: 1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        var(--shadow-lg),
        0 0 30px rgba(214, 69, 49, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: 
        linear-gradient(135deg, rgba(214, 69, 49, 0.1) 0%, rgba(214, 69, 49, 0.05) 100%);
    color: var(--primary-color);
    border: 2px solid rgba(214, 69, 49, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color), 
        transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(214, 69, 49, 0.4),
        0 0 20px rgba(214, 69, 49, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 232, 212, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(214, 69, 49, 0.1);
    z-index: 9999;
    transition: var(--transition);
    border-bottom: 1px solid rgba(214, 69, 49, 0.1);
}


.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    animation: headerGlow 3s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}


.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(214, 69, 49, 0.1), 
        transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(214, 69, 49, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--primary-light));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(214, 69, 49, 0.5);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-toggle:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Home Section */
.home-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(214, 69, 49, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(214, 69, 49, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(214, 69, 49, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, #0B3D23 0%, #123D2F 30%, #1B4D3E 70%, #0B3D23 100%);
    padding-top: 80px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}



/* Magical Background */
.magical-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.particle-field {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #D64531;
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    box-shadow: 0 0 10px #D64531;
}

.particle-1 { top: 10%; left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle-2 { top: 20%; left: 80%; animation-delay: 2s; animation-duration: 25s; }
.particle-3 { top: 60%; left: 20%; animation-delay: 4s; animation-duration: 18s; }
.particle-4 { top: 80%; left: 70%; animation-delay: 6s; animation-duration: 22s; }
.particle-5 { top: 40%; left: 50%; animation-delay: 8s; animation-duration: 16s; }
.particle-6 { top: 70%; left: 10%; animation-delay: 10s; animation-duration: 24s; }
.particle-7 { top: 30%; left: 90%; animation-delay: 12s; animation-duration: 19s; }
.particle-8 { top: 90%; left: 40%; animation-delay: 14s; animation-duration: 21s; }

@keyframes particleFloat {
    0% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0;
    }
    10% { 
        opacity: 1;
    }
    90% { 
        opacity: 1;
    }
    100% { 
        transform: translateY(-100vh) translateX(50px) scale(0);
        opacity: 0;
    }
}

.energy-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.wave {
    position: absolute;
    border: 2px solid rgba(214, 69, 49, 0.3);
    border-radius: 50%;
    animation: waveExpand 8s ease-in-out infinite;
}

.wave-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.wave-3 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes waveExpand {
    0% { 
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% { 
        opacity: 0.5;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.home-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 99px,
            rgba(214, 69, 49, 0.03) 99px,
            rgba(214, 69, 49, 0.03) 100px
        );
    animation: inspireGrid 25s linear infinite;
    z-index: 0;
}

/* City Skyline Animation */
.city-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 2;
    overflow: hidden;
}

.city-buildings {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 1rem;
}

.building {
    background: linear-gradient(to top, #123D2F 0%, #1B4D3E 50%, #2A6B55 100%);
    border-radius: 6px 6px 0 0;
    position: relative;
    animation: buildingGlow 3s ease-in-out infinite alternate;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(0, 0, 0, 0.5);
}

.building::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 12px,
            rgba(214, 69, 49, 0.1) 12px,
            rgba(214, 69, 49, 0.1) 14px
        );
    border-radius: 6px 6px 0 0;
}

.building::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 8px,
            rgba(255, 255, 255, 0.05) 8px,
            rgba(255, 255, 255, 0.05) 10px
        );
    border-radius: 6px 6px 0 0;
}

.building-1 { width: 50px; height: 250px; animation-delay: 0s; }
.building-2 { width: 80px; height: 320px; animation-delay: 0.5s; }
.building-3 { width: 45px; height: 200px; animation-delay: 1s; }
.building-4 { width: 70px; height: 280px; animation-delay: 1.5s; }
.building-5 { width: 60px; height: 220px; animation-delay: 2s; }
.building-6 { width: 75px; height: 300px; animation-delay: 2.5s; }
.building-7 { width: 40px; height: 180px; animation-delay: 3s; }
.building-8 { width: 90px; height: 350px; animation-delay: 3.5s; }
.building-9 { width: 55px; height: 240px; animation-delay: 4s; }
.building-10 { width: 65px; height: 260px; animation-delay: 4.5s; }

@keyframes inspireGlow {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    33% { 
        opacity: 0.8;
        transform: scale(1.02) rotate(1deg);
    }
    66% { 
        opacity: 0.7;
        transform: scale(0.98) rotate(-1deg);
    }
}

@keyframes inspireGrid {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(50px) translateY(-10px); }
    100% { transform: translateX(100px) translateY(0); }
}

@keyframes buildingGlow {
    0% { 
        box-shadow: 
            0 0 10px rgba(214, 69, 49, 0.3),
            inset 0 0 20px rgba(0, 0, 0, 0.3),
            0 0 10px rgba(0, 0, 0, 0.5);
        filter: brightness(1);
        transform: translateY(0);
    }
    50% { 
        box-shadow: 
            0 0 25px rgba(214, 69, 49, 0.7),
            inset 0 0 30px rgba(0, 0, 0, 0.4),
            0 0 15px rgba(0, 0, 0, 0.6);
        filter: brightness(1.3);
        transform: translateY(-3px);
    }
    100% { 
        box-shadow: 
            0 0 15px rgba(214, 69, 49, 0.5),
            inset 0 0 20px rgba(0, 0, 0, 0.3),
            0 0 10px rgba(0, 0, 0, 0.5);
        filter: brightness(1.1);
        transform: translateY(-1px);
    }
}


@keyframes busTrail {
    0% { 
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
        width: 0px;
    }
    10% { 
        opacity: 0.8;
        transform: translateY(-50%) scaleX(1);
        width: 100px;
    }
    90% { 
        opacity: 0.6;
        transform: translateY(-50%) scaleX(1);
        width: 120px;
    }
    100% { 
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
        width: 0px;
    }
}

@keyframes busBounce {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-3px) rotate(1deg);
    }
    50% { 
        transform: translateY(-5px) rotate(0deg);
    }
    75% { 
        transform: translateY(-2px) rotate(-1deg);
    }
}

@keyframes busFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translate(-50%, -50%) translateY(-8px) rotate(1deg);
    }
    50% { 
        transform: translate(-50%, -50%) translateY(-12px) rotate(0deg);
    }
    75% { 
        transform: translate(-50%, -50%) translateY(-8px) rotate(-1deg);
    }
}

@keyframes roadLines {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

@keyframes neonGlow {
    0%, 100% { 
        text-shadow: 
            0 0 5px var(--primary-color),
            0 0 10px var(--primary-color),
            0 0 15px var(--primary-color);
    }
    50% { 
        text-shadow: 
            0 0 10px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 30px var(--primary-color),
            0 0 40px var(--primary-color);
    }
}

@keyframes dataStream {
    0% { 
        transform: translateY(-100vh);
        opacity: 0;
    }
    10% { 
        opacity: 1;
    }
    90% { 
        opacity: 1;
    }
    100% { 
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home-text {
    animation: fadeInLeft 1s ease-out;
}

.home-title {
    font-size: 5rem;
    font-weight: 900;
    color: #0B3D23;
    margin-bottom: 2rem;
    line-height: 1.1;
    animation: inspireTitle 10s ease-in-out infinite;
    letter-spacing: -0.04em;
    position: relative;
    text-shadow: 
        0 0 30px rgba(214, 69, 49, 0.4),
        0 0 60px rgba(214, 69, 49, 0.2);
    background: linear-gradient(135deg, #0B3D23 0%, #D64531 30%, #0B3D23 70%, #D64531 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: inspireTitle 10s ease-in-out infinite, gradientShift 8s ease-in-out infinite;
}

@keyframes inspireTitle {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
    25% { 
        transform: translateY(-5px) scale(1.02);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-8px) scale(1.05);
        opacity: 0.95;
    }
    75% { 
        transform: translateY(-3px) scale(1.01);
        opacity: 0.9;
    }
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
}

@keyframes inspireSubtitle {
    0%, 100% { 
        opacity: 0.9;
        transform: translateY(0px);
    }
    50% { 
        opacity: 1;
        transform: translateY(-2px);
    }
}

.home-subtitle {
    font-size: 1.4rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: inspireSubtitle 8s ease-in-out infinite;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 600px;
}


.home-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-video {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.9s both;
    position: relative;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-container {
    position: relative;
    width: 300px;
    height: 600px;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    25% { transform: translateY(-10px) rotateY(2deg); }
    50% { transform: translateY(-15px) rotateY(0deg); }
    75% { transform: translateY(-10px) rotateY(-2deg); }
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: var(--black);
    border-radius: 40px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: var(--white);
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 250px;
    height: 450px;
    margin: 0 auto;
    animation: phoneFloat 6s ease-in-out infinite;
}

.video-frame {
    width: 100%;
    height: 100%;
    background: var(--black);
    border-radius: 30px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.video-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: var(--white);
    border-radius: 3px;
}

.video-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


@keyframes busFloat {
    0%, 100% { 
        transform: translateY(-50%) rotate(0deg) scale(1);
    }
    25% { 
        transform: translateY(-70px) rotate(3deg) scale(1.05);
    }
    50% { 
        transform: translateY(-80px) rotate(0deg) scale(1.1);
    }
    75% { 
        transform: translateY(-60px) rotate(-3deg) scale(1.05);
    }
}

@keyframes busMove {
    0%, 100% { 
        transform: translateY(-50%) translateX(0px) rotate(0deg) scale(1);
    }
    25% { 
        transform: translateY(-50%) translateX(-15px) rotate(-5deg) scale(1.05);
    }
    50% { 
        transform: translateY(-50%) translateX(0px) rotate(0deg) scale(1.1);
    }
    75% { 
        transform: translateY(-50%) translateX(15px) rotate(5deg) scale(1.05);
    }
}

/* Road Animation */
.road-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #2c2c2c 0%, #0B3D23 100%);
    z-index: 2;
    overflow: hidden;
}

.road-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #ffffff 0px,
        #ffffff 30px,
        transparent 30px,
        transparent 60px
    );
    transform: translateY(-50%);
    animation: roadLines 2s linear infinite;
}

/* Intelligent City Background */
.intelligent-city {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}


/* Amazing Section Transitions */
section {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0) scale(1);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214, 69, 49, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

section:hover::before {
    left: 100%;
}

section:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Entry Animations */
@keyframes sectionSlideIn {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }
    50% {
        opacity: 0.7;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(2deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.9) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes sectionZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.8) translateY(25px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.data-particle {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    animation: dataStream 8s linear infinite;
    opacity: 0.6;
}

.data-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.data-particle:nth-child(2) { left: 30%; animation-delay: 2s; }
.data-particle:nth-child(3) { left: 50%; animation-delay: 4s; }
.data-particle:nth-child(4) { left: 70%; animation-delay: 6s; }
.data-particle:nth-child(5) { left: 90%; animation-delay: 1s; }

/* Intelligent City Grid */
.city-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 49px,
            rgba(214, 69, 49, 0.03) 50px,
            rgba(214, 69, 49, 0.03) 51px,
            transparent 52px,
            transparent 100px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 49px,
            rgba(214, 69, 49, 0.03) 50px,
            rgba(214, 69, 49, 0.03) 51px,
            transparent 52px,
            transparent 100px
        );
    animation: cityGrid 25s linear infinite;
    z-index: 1;
}

/* Smart Traffic Lights */
.traffic-light {
    position: absolute;
    width: 8px;
    height: 20px;
    background: #333;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.traffic-light::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: trafficBlink 2s ease-in-out infinite;
}

.traffic-light-1 { top: 30%; right: 10%; }
.traffic-light-2 { top: 50%; left: 10%; }
.traffic-light-3 { top: 70%; right: 20%; }

@keyframes trafficBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Advanced Particle System */
.advanced-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color), transparent);
    animation: particleFloat 8s ease-in-out infinite;
    opacity: 0.7;
}

.particle-small {
    width: 3px;
    height: 3px;
    animation-duration: 6s;
}

.particle-medium {
    width: 5px;
    height: 5px;
    animation-duration: 8s;
}

.particle-large {
    width: 8px;
    height: 8px;
    animation-duration: 10s;
}

/* Interactive Hover Zones */
.hover-zone {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.hover-zone.active {
    pointer-events: all;
}

/* Enhanced Bus Trail Effect */
.bus-trail {
    position: absolute;
    top: 50%;
    left: -50px;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color), 
        transparent);
    transform: translateY(-50%);
    animation: busTrail 2s ease-out infinite;
    opacity: 0.6;
}

@keyframes busTrail {
    0% { 
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }
    50% { 
        opacity: 0.8;
        transform: translateY(-50%) scaleX(1);
    }
    100% { 
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(214, 69, 49, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(214, 69, 49, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(214, 69, 49, 0.03) 0%, transparent 70%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    animation: sectionZoomIn 1.5s ease-out;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    overflow: hidden;
}

/* Add subtle orange overlay to about section */
.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(214, 69, 49, 0.05);
    z-index: 1;
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-text {
    max-width: 800px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

/* Add subtle orange accent to about text */
.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(214, 69, 49, 0.05);
    border-radius: 20px;
    z-index: -1;
}

.about-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-launch {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    font-style: italic;
}

/* Content Section */
.content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Content Section Background Effects */
.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    z-index: 1;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.card-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.content-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon .card-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.content-card:hover .card-title {
    color: var(--primary-color);
}

.card-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.feature-item {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(214, 69, 49, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 69, 49, 0.4);
}


.content-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(214, 69, 49, 0.2);
    border-color: var(--primary-dark);
}

.road-container {
    display: none;
}

/* Road scrolling effect - Invisible movement */
.road-container::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 48px,
            transparent 48px,
            transparent 52px,
            transparent 52px,
            transparent 100px
        );
    opacity: 0;
    animation: roadScrollForward var(--road-speed, 2s) linear infinite;
    z-index: 1;
}

@keyframes roadScrollForward {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.road {
    width: 100%;
    max-width: 600px;
    height: 100px;
    background: var(--dark-gray);
    position: relative;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.road-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        var(--white) 0,
        var(--white) 30px,
        transparent 30px,
        transparent 60px
    );
    transform: translateY(-50%);
}

.bus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    animation: busFloat 2s ease-in-out infinite;
}

@keyframes busFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.bus-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.bus-image {
    width: 80px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.bus-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.bus-icon:hover .bus-tooltip {
    opacity: 1;
    bottom: -50px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.content-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.card-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-item {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Game Section */
.game-section {
    padding: 8rem 0;
    background: var(--city-bg);
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    animation: sectionSlideIn 1.4s ease-out;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Add subtle orange accent to game section */
.game-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(214, 69, 49, 0.05);
    z-index: 1;
    pointer-events: none;
}

.game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(214, 69, 49, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(232, 106, 85, 0.05) 0%, transparent 50%);
    animation: cityPulse 10s ease-in-out infinite;
    z-index: 1;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.game-content {
    text-align: center;
    margin-bottom: 4rem;
}

[dir="rtl"] .game-content {
    text-align: center;
}

.game-content .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.game-content .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

[dir="rtl"] .game-content .section-subtitle {
    text-align: center;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'Cairo', 'Arial', sans-serif;
}

.game-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(214, 69, 49, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.game-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-mockup {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #123D2F 0%, #1B4D3E 100%);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--primary-color);
}

.game-screen {
    width: 100%;
    height: 100%;
    background: var(--city-bg);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.game-bus-icon {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: busFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(214, 69, 49, 0.8));
    z-index: 10;
}

.game-road {
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 30px;
    background: linear-gradient(to top, #0B3D23 0%, #2c2c2c 100%);
    border-top: 2px solid var(--primary-color);
    border-radius: 0 0 8px 8px;
}

.game-road::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 20px;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary-color) 0,
        var(--primary-color) 4px,
        transparent 4px,
        transparent 8px
    );
    animation: roadLines 1s linear infinite;
    z-index: 5;
}

.game-info {
    text-align: left;
}

/* RTL Support for Game Section */
[dir="rtl"] .game-info {
    text-align: right;
}

.game-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(214, 69, 49, 0.5);
    text-align: left;
}

[dir="rtl"] .game-title {
    text-align: right;
}

.game-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
    text-align: justify;
    hyphens: auto;
}

[dir="rtl"] .game-description {
    text-align: right;
    text-align: justify;
    direction: rtl;
}

/* Game Stats */
.game-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(214, 69, 49, 0.6);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
}

[dir="rtl"] .stat-label {
    letter-spacing: 0.2px;
    font-family: 'Tajawal', 'Noto Sans Arabic', 'Cairo', 'Arial', sans-serif;
}

/* Game Particles */
.game-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.game-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: gameParticleFloat 3s ease-in-out infinite;
    opacity: 0.7;
}

.game-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.game-particles .particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.game-particles .particle:nth-child(3) {
    bottom: 30%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes gameParticleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

/* Enhanced Game Buttons */
.game-play-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #E86A55 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.game-play-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.6s ease;
}

.game-play-btn:hover::before {
    left: 100%;
}

.game-play-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(214, 69, 49, 0.6);
}

.game-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

[dir="rtl"] .game-buttons {
    justify-content: center;
}

.game-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
}

[dir="rtl"] .game-buttons .btn {
    flex-direction: row-reverse;
}

.game-buttons .btn-icon {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-buttons .btn-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Apps Section */
.apps-section {
    padding: 10rem 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(214, 69, 49, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(214, 69, 49, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(214, 69, 49, 0.02) 0%, transparent 70%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    animation: sectionSlideIn 1.8s ease-out;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add subtle orange overlay to apps section */
.apps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(214, 69, 49, 0.05);
    z-index: 1;
    pointer-events: none;
}

/* Apps Section Futuristic Background */
.apps-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(214, 69, 49, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 106, 85, 0.03) 0%, transparent 50%);
    animation: cityPulse 12s ease-in-out infinite;
    z-index: 1;
}



.apps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.apps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.app-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible !important;
    height: auto !important;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.app-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.app-card:hover .app-icon {
    transform: scale(1.05);
}

.app-icon .app-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Partners App Card - White background */
.app-card:first-child {
    background: white;
    border: 2px solid var(--primary-color);
}

.partners-icon {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.partners-icon .app-img {
    filter: none;
}

/* Passenger App Card - Full orange background */
.app-card:last-child {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.app-card:last-child .app-title {
    color: white;
}

.app-card:last-child .app-description {
    color: rgba(255, 255, 255, 0.9);
}

.app-card:last-child .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.passenger-icon {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.passenger-icon .app-img {
    filter: none;
}

.app-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.app-card:hover .app-title {
    color: var(--primary-color);
}

.app-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.badge {
    background: #f8f9fa;
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.badge:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 69, 49, 0.3);
}

/* Download Buttons */
.download-buttons {
    display: flex !important;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
    position: relative;
}

.app-store-btn,
.google-play-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: all 0.2s ease;
    min-width: 140px;
    border: 2px solid;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
    position: relative;
    cursor: pointer;
}

.app-store-btn {
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    font-size: 0.9rem !important;
    padding: 0.8rem 1.2rem !important;
    margin: 0.3rem !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    position: relative;
}


.app-store-btn:hover {
    background: #333333 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.google-play-btn {
    background: #01875f !important;
    color: #ffffff !important;
    border: 2px solid #01875f !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    padding: 0.8rem 1.2rem !important;
    margin: 0.3rem !important;
    box-shadow: 0 2px 8px rgba(1,135,95,0.15) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    position: relative;
}


.google-play-btn:hover {
    background: #016b4a !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(1, 135, 95, 0.2) !important;
}

.google-play-btn.coming-soon {
    background: #f8f9fa !important;
    color: #6c757d !important;
    border: 2px solid #dee2e6 !important;
    cursor: not-allowed !important;
    opacity: 0.8 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.google-play-btn.coming-soon:hover {
    background: #f8f9fa;
    color: #6c757d;
    border-color: #dee2e6;
    transform: none;
    box-shadow: none;
}

.store-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.app-store-btn .store-icon::before {
    content: "⬇";
    font-size: 16px;
    display: block;
    color: #ffffff;
    font-weight: bold;
}

.google-play-btn .store-icon::before {
    content: "▶";
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    display: block;
}

.store-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
}

/* New Modern Apps Design */
.apps-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apps-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.app-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(248, 232, 212, 0.95);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(214, 69, 49, 0.08);
    border: 2px solid rgba(214, 69, 49, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    backdrop-filter: blur(20px);
}

/* Add subtle orange accent to app cards */
.app-showcase-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(214, 69, 49, 0.05);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-showcase-card:hover::after {
    opacity: 1;
}

.app-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(214, 69, 49, 0.1),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.app-showcase-card:hover::before {
    left: 100%;
}

.app-showcase-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(214, 69, 49, 0.2),
        0 0 60px rgba(214, 69, 49, 0.1);
    border-color: var(--primary-color);
}

.app-showcase-card:hover .app-title {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(214, 69, 49, 0.3);
}

.passenger-app {
    background: rgba(248, 232, 212, 0.95);
    color: var(--text-dark);
}


/* Coming Soon Button */
.coming-soon-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    cursor: not-allowed;
    opacity: 0.8;
}

.coming-soon-btn:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.passenger-app .app-title,
.passenger-app .app-description {
    color: var(--text-dark);
}

.app-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.app-preview {
    position: relative;
}

.app-screenshot {
    width: 200px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Screenshots Gallery */
.screenshots-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.screenshot-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-frame {
    position: relative;
    background: #000;
    border-radius: 25px;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-frame:hover {
    transform: scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(214, 69, 49, 0.3);
}

.screenshot-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 8px 16px;
    z-index: 10;
}

.screenshot-indicator {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.current-screenshot {
    color: var(--primary-color);
    font-weight: 700;
}

.screenshot-separator {
    opacity: 0.7;
}

.total-screenshots {
    opacity: 0.7;
}

.screenshots-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.thumbnail {
    width: 60px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    background: #000;
    padding: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(214, 69, 49, 0.3);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(214, 69, 49, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail.active .thumbnail-overlay {
    opacity: 1;
    background: linear-gradient(45deg, rgba(214, 69, 49, 0.2), transparent);
}

.thumbnail.active {
    border-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.app-placeholder p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

.passenger-app .app-badge {
    background: rgba(214, 69, 49, 0.1);
    color: var(--primary-color);
}

.app-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.app-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(214, 69, 49, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.passenger-app .feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Professional Feature Icons */
.income-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.income-icon::after {
    content: '$';
    position: absolute;
    color: white;
    font-weight: bold;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.easy-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid var(--primary-color);
    position: relative;
}

.easy-icon::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.drive-icon::before {
    content: '';
    width: 16px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 2px;
    position: relative;
}

.drive-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 6px solid var(--primary-color);
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.bus-icon::before {
    content: '';
    width: 18px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: relative;
}

.bus-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 5px solid var(--primary-color);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.money-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.money-icon::after {
    content: '$';
    position: absolute;
    color: white;
    font-weight: bold;
    font-size: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.users-icon::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.users-icon::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: -4px;
}

.download-section {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    min-width: 140px;
}

.apple-btn {
    background: #000000;
    color: white;
    border-color: #000000;
}

.apple-btn .btn-icon-img {
    filter: brightness(0) invert(1);
}

.apple-btn:hover {
    background: #333333;
    border-color: #333333;
    transform: translateY(-1px);
}

.google-btn {
    background: #01875f;
    color: white;
    border-color: #01875f;
}

.google-btn .btn-icon-img {
    filter: brightness(0) invert(1);
}

.google-btn:hover {
    background: #016b4a;
    border-color: #016b4a;
    transform: translateY(-1px);
}

.google-btn.coming-soon {
    background: #f8f9fa;
    color: #6c757d;
    border-color: #dee2e6;
    cursor: not-allowed;
    opacity: 0.7;
}

.google-btn.coming-soon .btn-icon-img {
    filter: grayscale(1) opacity(0.7);
}

.google-btn.coming-soon:hover {
    transform: none;
    background: #f8f9fa;
    border-color: #dee2e6;
}

.btn-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.btn-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.btn-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design for Apps */
@media (max-width: 768px) {
    .app-showcase-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .app-visual {
        order: 2;
    }
    
    .app-content {
        order: 1;
    }
    
    .phone-mockup {
        width: 150px;
        height: 300px;
    }
    
    .download-section {
        flex-direction: column;
    }
    
    .download-btn {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .game-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .game-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .game-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
    
    [dir="rtl"] .game-buttons {
        justify-content: center;
    }
    
    .game-description {
        text-align: left;
        line-height: 1.7;
    }
    
    [dir="rtl"] .game-description {
        text-align: right;
    }
}

.apps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.app-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.app-icon {
    margin-bottom: 1.5rem;
}

.app-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.app-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.app-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0B3D23 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
    animation: sectionFadeIn 1.6s ease-out;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer Futuristic Effects */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(214, 69, 49, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(232, 106, 85, 0.05) 0%, transparent 50%);
    animation: cityPulse 15s ease-in-out infinite;
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 50px,
            rgba(214, 69, 49, 0.02) 50px,
            rgba(214, 69, 49, 0.02) 52px
        );
    animation: cityGrid 30s linear infinite;
    z-index: 1;
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-tagline {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

/* Footer Social */
.footer-social {
    margin-top: 10px;
    color: var(--text-light);
}

.footer-social strong {
    color: var(--text-dark);
}

.instagram-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.phone-number {
    direction: ltr;
    unicode-bidi: embed;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.social-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: var(--text-light);
    margin: 0;
}

/* Passenger App Promo Popup */
.promo-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.promo-popup[hidden] {
    display: none;
}

.promo-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(4px);
}

.promo-popup-dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 88%);
    max-height: calc(100vh - 2.5rem);
    overflow: auto;
    background: transparent;
    animation: promoPopupIn 0.35s ease-out;
}

.promo-popup-close {
    position: absolute;
    top: 0.75rem;
    inset-inline-end: 0.75rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.promo-popup-close:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.promo-popup-image-link {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.promo-popup-image-link.is-static {
    cursor: default;
    pointer-events: none;
}

.promo-popup-image {
    display: block;
    width: 100%;
    max-height: min(58vh, 420px);
    height: auto;
    object-fit: contain;
    vertical-align: middle;
    background: #111;
}

.promo-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.promo-popup-actions .promo-store-btn {
    min-width: 160px;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
}

.promo-popup-actions .promo-store-btn.is-hidden {
    display: none;
}

body.promo-popup-open {
    overflow: hidden;
}

@keyframes promoPopupIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 640px) {
    .promo-popup {
        padding: 0.75rem;
    }

    .promo-popup-dialog {
        width: min(100%, 86%);
    }

    .promo-popup-image {
        max-height: min(42vh, 280px);
    }

    .promo-popup-close {
        top: 0.5rem;
        inset-inline-end: 0.5rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.5rem;
    }

    .promo-popup-actions {
        margin-top: 0.75rem;
        gap: 0.5rem;
    }

    .promo-popup-actions .promo-store-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Game Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.close {
    color: var(--dark-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
}

.close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.game-icon {
    margin: 2rem 0;
}

.game-bus-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.play-game-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-game-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .home-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .home-title {
        font-size: 2.5rem;
    }
    
    .phone-container {
        width: 250px;
        height: 500px;
    }
    
    .video-container {
        width: 200px;
        height: 360px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .about-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .about-subtitle {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .home-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .app-store-btn,
    .google-play-btn {
        width: 100%;
        min-width: auto;
    }
    
    .social-links {
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
    }
}

/* Game Section Mobile Responsive */
@media (max-width: 768px) {
    .game-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .game-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .game-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .home-container,
    .content-container,
    .apps-container,
    .footer-container {
        padding: 0 1rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .app-card {
        height: auto;
        min-height: 350px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-card {
        height: auto;
        min-height: 350px;
    }
    
    .home-title {
        font-size: 2rem;
    }
    
    .phone-container {
        width: 200px;
        height: 400px;
    }
    
    .video-container {
        width: 180px;
        height: 320px;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
        width: 90%;
    }
}

/* RTL Support */
[dir="rtl"] .home-content {
    direction: rtl;
}

[dir="rtl"] .content-grid {
    direction: rtl;
}

[dir="rtl"] .nav-menu {
    direction: rtl;
}

[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .bus-tooltip {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.lang-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Hover effects for interactive elements */
.content-card,
.app-card {
    cursor: pointer;
}

.content-card:hover,
.app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================
   Dhofar Season — professional transit theme
   Clean operator look + seasonal brand colors
   ============================================ */

.dhofar-season {
    --surface: #FFF9F2;
    --surface-elevated: #FFFFFF;
    --ink: #14352C;
    --ink-muted: #4A635A;
    --line: rgba(27, 77, 62, 0.14);
    --route: #D64531;
    --route-soft: rgba(214, 69, 49, 0.12);
}

body.dhofar-season {
    background: var(--surface);
    color: var(--ink);
}

/* —— Header / nav —— */
.dhofar-season .header {
    background: rgba(255, 249, 242, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 24px rgba(20, 53, 44, 0.04);
}

.dhofar-season .header::before {
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green) 0%, var(--route) 50%, var(--mint) 100%);
    animation: none;
    opacity: 1;
}

.dhofar-season .nav-logo {
    gap: 0.75rem;
}

.dhofar-season .logo-img,
.dhofar-season .footer-logo-img {
    width: auto;
    height: 88px;
    max-width: 260px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.dhofar-season .footer-logo-img {
    height: 64px;
    max-width: 200px;
}

.dhofar-season .logo-text,
.dhofar-season .footer-logo-text {
    display: none;
}

.dhofar-season .nav-link {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 0.4rem 0.15rem;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: inset 0 -2px 0 transparent;
    transition: color 0.2s ease, box-shadow 0.2s ease;
}

.dhofar-season .nav-link::before,
.dhofar-season .nav-link::after {
    display: none !important;
}

.dhofar-season .nav-link:hover,
.dhofar-season .nav-link.active {
    color: var(--route);
    background: transparent;
    transform: none;
    text-shadow: none;
    box-shadow: inset 0 -2px 0 var(--route);
}

.dhofar-season .lang-toggle {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    border-radius: 6px;
    font-weight: 600;
    box-shadow: none;
}

.dhofar-season .lang-toggle:hover {
    background: var(--forest-green);
    color: var(--logo-cream);
    border-color: var(--forest-green);
    transform: none;
}

.dhofar-season .scroll-progress {
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--route));
}

/* —— Campaign hero (image only) —— */
.dhofar-season .home-section {
    min-height: 0;
    height: auto;
    display: block;
    padding: 0;
    padding-top: 80px;
    margin: 0;
    overflow: hidden;
    background: var(--cream);
    align-items: stretch;
}

.dhofar-season .home-section::before,
.dhofar-season .home-section::after,
.dhofar-season .home-section .magical-bg,
.dhofar-season .home-section .interactive-elements,
.dhofar-season .home-section .particle-container {
    display: none !important;
}

.dhofar-hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: var(--cream);
}

/* —— Intro (operator message + product) —— */
.dhofar-season .home-intro-section {
    background: var(--surface);
    padding: 4.5rem 0 4rem;
    position: relative;
    border-bottom: 1px solid var(--line);
}

.dhofar-season .home-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--forest-green) 12%,
        var(--route) 50%,
        var(--mint) 88%,
        transparent 100%);
}

.dhofar-season .home-intro-section .home-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.dhofar-season .home-intro-section .home-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.dhofar-season .home-intro-section .home-title,
.dhofar-season .home-intro-section .home-title .title-word {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    background: none;
    -webkit-text-fill-color: var(--ink);
    text-shadow: none;
    animation: none;
    margin-bottom: 1.25rem;
}

.dhofar-season .home-intro-section .home-subtitle {
    color: var(--ink-muted);
    text-shadow: none;
    opacity: 1;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 34rem;
    font-weight: 450;
}

.dhofar-season .home-intro-section .home-buttons {
    margin-top: 2rem;
    gap: 0.85rem;
}

.dhofar-season .home-intro-section .btn-icon {
    display: none;
}

.dhofar-season .btn {
    border-radius: 8px;
    padding: 0.95rem 1.6rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transform: none !important;
}

.dhofar-season .btn-primary {
    background: var(--route);
    border: 1px solid var(--route);
    box-shadow: 0 8px 20px rgba(214, 69, 49, 0.22);
    text-shadow: none;
}

.dhofar-season .btn-primary::before {
    display: none;
}

.dhofar-season .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 10px 24px rgba(184, 50, 31, 0.28);
    text-shadow: none;
}

.dhofar-season .btn-secondary {
    background: transparent;
    color: var(--forest-green);
    border: 1.5px solid var(--forest-green);
    box-shadow: none;
    backdrop-filter: none;
}

.dhofar-season .btn-secondary::before {
    display: none;
}

.dhofar-season .btn-secondary:hover {
    background: var(--forest-green);
    color: var(--logo-cream);
    box-shadow: 0 8px 20px rgba(27, 77, 62, 0.2);
    text-shadow: none;
}

.dhofar-season .home-intro-section .home-video .video-frame {
    box-shadow: 0 24px 48px rgba(20, 53, 44, 0.14);
}

.dhofar-season .home-intro-section .video-glow {
    opacity: 0.2;
    filter: none;
    background: rgba(27, 77, 62, 0.18);
}

/* —— About —— */
.dhofar-season .about-section {
    min-height: 0;
    padding: 5.5rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, #F3E6D4 100%);
    animation: none;
}

.dhofar-season .about-section::before,
.dhofar-season .about-section::after {
    display: none !important;
}

.dhofar-season .about-text {
    max-width: 720px;
    text-align: left;
    background: var(--surface-elevated);
    padding: 3rem 3.25rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(20, 53, 44, 0.06);
    border: 1px solid var(--line);
    backdrop-filter: none;
    border-left: 4px solid var(--route);
}

[dir="rtl"] .dhofar-season .about-text {
    text-align: right;
    border-left: 1px solid var(--line);
    border-right: 4px solid var(--route);
}

.dhofar-season .about-text::before {
    display: none;
}

.dhofar-season .about-section .section-title {
    color: var(--ink);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.dhofar-season .about-section .section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 0.75rem auto 0;
    background: var(--route);
    border-radius: 2px;
}

.dhofar-season .about-subtitle {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.dhofar-season .about-description {
    color: var(--ink-muted);
    text-align: left;
    font-size: 1.05rem;
}

[dir="rtl"] .dhofar-season .about-description {
    text-align: right;
}

.dhofar-season .about-launch {
    color: var(--route);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
    margin-top: 1.75rem;
}

/* —— Apps —— */
.dhofar-season .apps-section {
    background: var(--surface);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.dhofar-season .apps-section::before,
.dhofar-season .apps-section::after {
    display: none !important;
}

.dhofar-season .section-title {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dhofar-season .section-subtitle {
    color: var(--ink-muted);
}

.dhofar-season .app-showcase-card {
    background: var(--surface-elevated);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--line);
    box-shadow: 0 14px 36px rgba(20, 53, 44, 0.06);
    backdrop-filter: none;
    overflow: visible;
}

.dhofar-season .app-showcase-card::before,
.dhofar-season .app-showcase-card::after {
    display: none !important;
}

.dhofar-season .app-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(20, 53, 44, 0.1);
    border-color: rgba(27, 77, 62, 0.28);
}

.dhofar-season .app-showcase-card:hover .app-title {
    color: var(--forest-green);
    text-shadow: none;
}

.dhofar-season .app-badge {
    background: var(--route-soft);
    color: var(--route);
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
}

.dhofar-season .passenger-app .app-badge {
    background: rgba(27, 77, 62, 0.1);
    color: var(--forest-green);
}

.dhofar-season .app-title {
    color: var(--ink);
}

.dhofar-season .app-description {
    color: var(--ink-muted);
}

.dhofar-season .download-btn {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(20, 53, 44, 0.08);
}

/* —— Footer —— */
.dhofar-season .footer {
    background: var(--forest-dark);
    animation: none;
}

.dhofar-season .footer::before,
.dhofar-season .footer::after {
    display: none !important;
}

.dhofar-season .footer-tagline,
.dhofar-season .footer-copyright,
.dhofar-season .contact-info,
.dhofar-season .contact-info p {
    color: rgba(253, 248, 225, 0.78);
}

.dhofar-season .footer-title {
    color: var(--logo-cream);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.dhofar-season .footer-bottom {
    border-top: 1px solid rgba(253, 248, 225, 0.12);
}

.dhofar-season .instagram-link {
    color: var(--mint);
}

.dhofar-season .promo-popup-dialog {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(20, 53, 44, 0.28);
}

@media (max-width: 968px) {
    .dhofar-season .home-intro-section .home-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .dhofar-season .home-intro-section .home-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .dhofar-season .home-intro-section .home-buttons {
        justify-content: center;
    }

    .dhofar-season .about-text {
        padding: 2rem 1.5rem;
        text-align: center;
        border-left: 1px solid var(--line);
        border-top: 4px solid var(--route);
    }

    [dir="rtl"] .dhofar-season .about-text {
        border-right: 1px solid var(--line);
        text-align: center;
    }

    .dhofar-season .about-description {
        text-align: center;
    }

    .dhofar-season .logo-img {
        height: 72px;
        max-width: 210px;
    }
}

@media (max-width: 640px) {
    .dhofar-season .home-section {
        padding-top: 72px;
    }

    .dhofar-season .home-intro-section {
        padding: 3rem 0 2.5rem;
    }

    .dhofar-season .logo-img {
        height: 60px;
        max-width: 170px;
    }

    .dhofar-season .app-showcase-card {
        padding: 1.75rem;
    }
}
