/* ============================================
   RIDEAGO - Main Stylesheet
   Colors: Navy #1A237E, Gold #FF8F00, White
   ============================================ */

:root {
    --navy: #1A237E;
    --navy-light: #283593;
    --navy-dark: #0D1654;
    --gold: #FF8F00;
    --gold-light: #FFB300;
    --gold-dark: #E07D00;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-md);
}

/* Header links white on hero, dark when scrolled */
.header .nav-links a {
    color: rgba(255,255,255,0.85);
}
.header .nav-links a:hover {
    color: var(--white);
}
.header.scrolled .nav-links a {
    color: var(--gray-700);
}
.header.scrolled .nav-links a:hover {
    color: var(--navy);
}

.header .logo-text .ride { color: var(--white); }
.header.scrolled .logo-text .ride { color: var(--navy); }

.header .logo img:first-child {
    filter: brightness(0) invert(1);
}
.header.scrolled .logo img:first-child {
    filter: invert(52%) sepia(95%) saturate(1000%) hue-rotate(3deg) brightness(100%) contrast(101%);
}

.header .logo .logo-r-img {
    filter: brightness(0) invert(1) !important;
}
.header.scrolled .logo .logo-r-img {
    filter: none !important;
}

.header .menu-toggle span { background: var(--white); }
.header.scrolled .menu-toggle span { background: var(--gray-800); }

/* Language dropdown */
.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255,255,255,0.1);
}

.header.scrolled .lang-btn {
    color: var(--gray-700);
}

.header.scrolled .lang-btn:hover {
    background: var(--gray-100);
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid var(--gray-200);
    min-width: 150px;
    max-height: 190px;
    overflow-y: auto;
    padding: 6px 0;
    z-index: 1000;
}

.lang-menu.open {
    display: block;
}

.lang-option {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.lang-option:hover {
    background: rgba(255,143,0,0.06);
    color: var(--gold-dark);
}

.lang-option.active {
    color: var(--gold);
    font-weight: 700;
    background: rgba(255,143,0,0.05);
}

.lang-option.active::before {
    content: '\2713  ';
    font-size: 11px;
}

.header .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}
.header .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}
.header.scrolled .btn-outline {
    border-color: var(--navy);
    color: var(--navy);
}
.header.scrolled .btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.header .container {
    display: flex;
    align-items: center;
    height: 72px;
    position: relative;
}

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

.logo img {
    height: 32px;
    width: auto;
    filter: invert(52%) sepia(95%) saturate(1000%) hue-rotate(3deg) brightness(100%) contrast(101%);
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
}

.logo-r-img {
    height: 26px;
    width: auto;
    margin-right: -3px;
    position: relative;
    top: 1px;
}

.logo-text .ride { color: var(--navy); }
.logo-text .ago { color: var(--gold); }

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0 auto;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--navy);
    color: var(--navy);
}

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

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255,143,0,0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    box-shadow: 0 4px 16px rgba(255,143,0,0.4);
    transform: translateY(-1px);
}

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

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    background: var(--navy-dark);
}

/* Background image layer */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Fallback gradient - only shows if hero-bg.jpg is missing */
.hero-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #080d2e 0%, #0D1654 30%, #1A237E 60%, #131a4a 100%);
    z-index: 0;
}

/* Light overlay - just enough to unify the image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,13,46,0.1) 0%,
        rgba(8,13,46,0.15) 60%,
        rgba(8,13,46,0.35) 100%
    );
    z-index: 2;
}

/* Subtle bottom fade to white */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, transparent 100%);
    z-index: 3;
}

.hero .container {
    position: static;
}

.hero-card-wrapper {
    position: relative;
    z-index: 100;
    height: 0;
    overflow: visible;
}

.hero-card {
    position: relative;
    top: -340px;
    left: 84px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 30px 32px;
    max-width: fit-content;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.hero-card-stores {
    display: flex;
    gap: 12px;
    margin-left: 20px;
}

.hero-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: none;
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.hero-store-btn:hover {
    color: var(--gold);
}

.hero-store-btn svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.hero-card h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.hero-card h1 span {
    color: var(--gold);
}

.hero-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.hero-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255,143,0,0.35);
    transition: var(--transition);
}

.hero-book-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,143,0,0.45);
}

/* ============================================
   BENEFITS BAR (under hero)
   ============================================ */

.benefits-bar {
    background: linear-gradient(180deg, #f5f6fb 0%, #ffffff 100%);
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-icon {
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,143,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.benefit-text span {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
}

@media (max-width: 968px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 640px) {
    .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   VEHICLE CLASSIFICATION SLIDER
   ============================================ */

.vehicle-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.vehicle-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    min-width: 100px;
}

.vehicle-tab:hover {
    border-color: var(--gold);
}

.vehicle-tab.active {
    border-color: var(--gold);
    background: rgba(255,143,0,0.05);
}

.vehicle-tab .tab-icon {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.vehicle-tab span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
}

.vehicle-tab.active span {
    color: var(--gold-dark);
}

.vehicle-slider {
    position: relative;
    background: transparent;
    padding: 40px;
    height: 380px;
    overflow: hidden;
}

.vehicle-slide {
    display: flex;
    align-items: center;
    gap: 50px;
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    pointer-events: none;
}

.vehicle-slide .vehicle-slide-img {
    opacity: 0;
    transform: translateX(120vw);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-slide .vehicle-slide-info {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.vehicle-slide.active {
    pointer-events: auto;
}

.vehicle-slide.active .vehicle-slide-img {
    opacity: 1;
    transform: translateX(0);
}

.vehicle-slide.active .vehicle-slide-info {
    opacity: 1;
    transform: translateY(0);
}

.vehicle-slide.slide-out-left .vehicle-slide-img {
    opacity: 0;
    transform: translateX(-120vw);
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.55, 0, 1, 0.45);
}

.vehicle-slide.slide-out-left .vehicle-slide-info {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vehicle-slide.slide-out-right .vehicle-slide-img {
    opacity: 0;
    transform: translateX(120vw);
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.55, 0, 1, 0.45);
}

.vehicle-slide.slide-out-right .vehicle-slide-info {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vehicle-slide-img {
    flex: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-slide-img img {
    width: 100%;
    max-height: none;
    object-fit: contain;
}

.vehicle-slide-info {
    flex: 1;
}

.vehicle-slide-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.vehicle-model {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 14px;
}

.vehicle-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.spec-icon {
    font-size: 18px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 10px;
}

.slider-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
    box-shadow: 0 3px 12px rgba(26,35,126,0.25);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-arrow:hover {
    background: var(--gold);
    transform: scale(1.08);
    box-shadow: 0 4px 18px rgba(255,143,0,0.35);
}

@media (max-width: 768px) {
    .vehicle-slide { flex-direction: column; gap: 24px; }
    .vehicle-slider { padding: 24px; }
    .vehicle-slide-info h3 { font-size: 22px; }
}

/* ============================================
   FEATURES / WHY US SECTION (removed, kept for reference)
   ============================================ */

.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}


.section-alt {
    background: #f0f2f8;
}

.section-navy-light {
    background: #eef0fa;
}

/* Section dividers */
.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-300), var(--gold-light), var(--gray-300), transparent);
    margin: 0;
}

.section-navy {
    background: var(--navy);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-navy .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
}

.section-navy .section-header p {
    color: rgba(255,255,255,0.6);
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.feature-icon.gold {
    background: rgba(255,143,0,0.1);
    color: var(--gold);
}

.feature-icon.navy {
    background: rgba(26,35,126,0.08);
    color: var(--navy);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   APP SHOWCASE - 3 PHONE CAROUSEL
   ============================================ */

.app-showcase-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-showcase-text { flex: 1; }
.app-showcase-text h2 {
    font-size: 32px; font-weight: 800; color: var(--gray-900);
    margin-bottom: 20px; line-height: 1.3;
}

.app-check-list {
    list-style: none; margin-bottom: 28px;
}
.app-check-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; color: var(--gray-700); margin-bottom: 12px;
}
.app-check-list li::before {
    content: '\2713'; width: 22px; height: 22px; border-radius: 50%;
    background: rgba(255,143,0,0.1); color: var(--gold); font-size: 12px;
    font-weight: 700; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Phone fan layout - like i'way */
.phone-carousel {
    flex: 1; display: flex; justify-content: center; align-items: center;
    min-height: 500px;
}

.phone-fan {
    position: relative; width: 360px; height: 480px;
}

/* iPhone 17 Pro - Gold - CSS recreation */
.iphone {
    position: absolute;
    width: 220px; height: 450px;
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.iphone-body {
    width: 100%; height: 100%;
    position: relative;
    /* Gold titanium outer frame */
    background: linear-gradient(160deg, #c9a45c, #b8923e 20%, #d4ae63 40%, #a8832f 60%, #c9a45c 80%, #d4ae63);
    border-radius: 40px;
    padding: 3px;
    box-shadow:
        0 0 0 0.5px rgba(0,0,0,0.3),
        0 12px 40px rgba(0,0,0,0.25);
}

/* Inner black bezel */
.iphone-body::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px; right: 3px; bottom: 3px;
    background: #000;
    border-radius: 37px;
    z-index: 1;
}

.iphone.pos-center .iphone-body {
    box-shadow:
        0 0 0 0.5px rgba(0,0,0,0.3),
        0 24px 60px rgba(0,0,0,0.35);
}

/* Side buttons - gold */
.iphone-body::before {
    content: '';
    position: absolute;
    left: -2.5px; top: 95px;
    width: 3px; height: 24px;
    background: linear-gradient(to bottom, #c9a45c, #a8832f, #c9a45c);
    border-radius: 2px 0 0 2px;
    z-index: 0;
    box-shadow:
        0 30px 0 0 #b8923e,
        0 52px 0 0 #b8923e;
}

.iphone::after {
    content: '';
    position: absolute;
    right: -2.5px; top: 120px;
    width: 3px; height: 40px;
    background: linear-gradient(to bottom, #c9a45c, #a8832f, #c9a45c);
    border-radius: 0 2px 2px 0;
    z-index: 0;
}

/* Dynamic Island */
.iphone-notch {
    position: absolute;
    top: 14px;
    left: 50%; transform: translateX(-50%);
    width: 76px; height: 22px;
    background: #000;
    border-radius: 14px;
    z-index: 15;
}

/* Front camera lens */
.iphone-notch::after {
    content: '';
    position: absolute;
    right: 14px; top: 50%; transform: translateY(-50%);
    width: 7px; height: 7px;
    background: radial-gradient(circle, #1a2a4a 40%, #0a0f1a 70%);
    border-radius: 50%;
    box-shadow: inset 0 0 1px rgba(255,255,255,0.1);
}

/* Screen */
.iphone-screen {
    position: absolute;
    top: 6px; left: 6px; right: 6px; bottom: 6px;
    background: var(--white);
    border-radius: 35px;
    padding: 40px 11px 20px;
    overflow: hidden;
    z-index: 10;
}

/* Home indicator bar */
.iphone-screen::after {
    content: '';
    position: absolute;
    bottom: 7px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 4px;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}

/* 3 fan positions */
.iphone.pos-left {
    left: -10px; top: 30px;
    transform: scale(0.85);
    opacity: 0.85;
}

.iphone.pos-center {
    left: 70px; top: 0;
    transform: scale(1);
    opacity: 1;
}

.iphone.pos-right {
    left: 150px; top: 30px;
    transform: scale(0.85);
    opacity: 0.85;
}

/* iPhone status bar */
.iphone-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px 4px;
    margin: -4px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-900);
}

.sb-time {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.sb-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sb-icon {
    color: var(--gray-900);
}

/* Map phone statusbar on top of map */
.screen-has-map .iphone-statusbar {
    position: relative;
    z-index: 10;
    color: var(--gray-900);
}

/* App bar inside phone */
.app-bar {
    display: flex; align-items: center; gap: 6px;
    padding-bottom: 6px; margin-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}
.app-bar-logo {
    height: 16px; width: auto;
    filter: invert(52%) sepia(95%) saturate(1000%) hue-rotate(3deg) brightness(100%) contrast(101%);
}
.app-bar-name {
    font-size: 13px; font-weight: 700; color: var(--navy);
}

.screen-section-title {
    font-size: 13px; font-weight: 700; color: var(--gray-800);
    margin-bottom: 8px;
}

/* Screen 1 - Map top bar */
.sc-map-topbar {
    display: flex; align-items: center; gap: 6px;
    position: relative; z-index: 5;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    margin: -8px -11px 0;
    padding: 8px 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Map phone: statusbar sits on top of map */
#phone-1 .iphone-statusbar {
    position: relative;
    z-index: 6;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    margin: -4px -4px 0;
    padding: 0 8px 2px;
    border-radius: 30px 30px 0 0;
}

/* Screen 1 - Map (full screen Google Maps style) */
.sc-map-full {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 35px;
}
.sc-map-full svg {
    display: block;
    width: 100%; height: 100%;
}

/* Screen 2 - Ride list */
.sc-list { display: flex; flex-direction: column; gap: 6px; }
.sc-list-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px; border-radius: 8px; background: var(--gray-50);
}
.sc-list-item.sc-active {
    background: rgba(255,143,0,0.07); border: 1px solid rgba(255,143,0,0.2);
}
.sc-item-left { min-width: 34px; text-align: center; }
.sc-item-time { font-size: 12px; font-weight: 700; color: var(--navy); }
.sc-item-date { font-size: 8px; color: var(--gray-400); }
.sc-item-mid { flex: 1; }
.sc-item-route { font-size: 10px; font-weight: 600; color: var(--gray-800); }
.sc-item-class { font-size: 9px; color: var(--gray-500); margin-top: 1px; }
.sc-item-price { font-size: 13px; font-weight: 800; color: var(--gold); }

/* Screen 3 - Vehicles */
.sc-vehicles { display: flex; flex-direction: column; gap: 6px; }
.sc-veh-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px; border-radius: 8px; background: var(--gray-50);
}
.sc-veh-item.sc-veh-active {
    background: rgba(26,35,126,0.05); border: 1px solid rgba(26,35,126,0.12);
}
.sc-veh-img { width: 50px; display: flex; align-items: center; }
.sc-veh-name { font-size: 11px; font-weight: 700; color: var(--gray-900); flex: 1; }
.sc-veh-info { font-size: 9px; color: var(--gray-500); flex: 1; }
.sc-veh-price { font-size: 13px; font-weight: 800; color: var(--gold); }
.sc-book-btn {
    display: block; text-align: center; padding: 10px;
    background: var(--gold); color: white; border-radius: 8px;
    font-size: 13px; font-weight: 700; margin-top: 8px;
}

@media (max-width: 968px) {
    .app-showcase-content { flex-direction: column; }
    .phone-carousel { min-height: 420px; }
}

/* ============================================
   VEHICLE SECTION
   ============================================ */

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

.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
    padding: 30px 24px;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vehicle-card .vehicle-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 64px;
}

.vehicle-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.vehicle-card p {
    font-size: 13px;
    color: var(--gray-500);
}

.vehicle-tag {
    display: inline-block;
    background: rgba(255,143,0,0.1);
    color: var(--gold-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
}

/* ============================================
   REGISTER MODAL
   ============================================ */

.reg-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999; }
.reg-modal.active { display: flex; align-items: center; justify-content: center; padding: 20px; }
.reg-modal-backdrop { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(8,13,46,0.75); backdrop-filter: blur(6px); }

.reg-modal-card {
    position: relative; width: 100%; max-width: 580px; max-height: 90vh;
    background: #fff; border-radius: 20px; padding: 36px 36px 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4); overflow-y: auto; z-index: 1;
}

.reg-modal-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; background: linear-gradient(135deg, #1A237E, #283593); border-radius: 50%; z-index: 0; }
.reg-modal-card::after { content: ''; position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; background: linear-gradient(135deg, #FF8F00, #FFB300); border-radius: 50%; z-index: 0; }
.reg-modal-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, #1A237E 0%, #283593 30%, #FF8F00 70%, #FFB300 100%); }

.reg-modal-close { position: absolute; top: 16px; left: 16px; width: 36px; height: 36px; border-radius: 50%; background: #f0f2f8; border: none; color: #1A237E; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; }
.reg-modal-close:hover { background: #1A237E; color: #fff; }

.reg-modal-header { text-align: center; margin-bottom: 24px; position: relative; z-index: 1; }
.reg-modal-logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.reg-modal-logo img:first-child { height: 28px; filter: invert(52%) sepia(95%) saturate(1000%) hue-rotate(3deg) brightness(100%) contrast(101%); }
.reg-modal-header h2 { font-size: 22px; font-weight: 800; color: #212121; margin-bottom: 4px; }
.reg-modal-header p { font-size: 13px; color: #757575; }

.reg-form { position: relative; z-index: 1; }
.reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.reg-field { margin-bottom: 0; }
.reg-field.reg-full { margin-bottom: 12px; }
.reg-field label { display: block; font-size: 11px; font-weight: 600; color: #757575; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.reg-field input, .reg-field select {
    width: 100%; padding: 10px 12px; border: 1.5px solid #E0E0E0; border-radius: 8px;
    font-size: 13px; font-family: 'Inter', sans-serif; color: #212121; background: #fafafa;
    transition: border-color 0.2s ease;
}
.reg-field input:focus, .reg-field select:focus { outline: none; border-color: #FF8F00; background: #fff; }

/* City warning */
.reg-city-warning {
    display: flex; align-items: flex-start; gap: 6px;
    background: #FFF3E0; border: 1px solid #FFE0B2; border-radius: 6px;
    padding: 8px 10px; margin-top: 6px; font-size: 11px; color: #E65100; line-height: 1.4;
}

/* Phone code */
.reg-phone-row { display: flex; gap: 8px; }
.reg-phone-code-wrap { position: relative; }
.reg-phone-code-btn {
    display: flex; align-items: center; gap: 6px; padding: 10px 12px;
    border: 1.5px solid #E0E0E0; border-radius: 8px; background: #fafafa;
    cursor: pointer; font-size: 13px; font-weight: 600; color: #333;
    white-space: nowrap; font-family: 'Inter', sans-serif;
}
.reg-phone-code-btn:hover { border-color: #FF8F00; }
.reg-phone-input { flex: 1; }
.reg-phone-dropdown {
    position: absolute; top: 100%; left: 0; width: 280px; max-height: 250px;
    background: #fff; border-radius: 10px; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid #E0E0E0; z-index: 100; overflow: hidden;
}
.reg-phone-search {
    width: 100%; padding: 10px 12px; border: none; border-bottom: 1px solid #f0f0f0;
    font-size: 13px; font-family: 'Inter', sans-serif; outline: none;
}
.reg-phone-list { max-height: 200px; overflow-y: auto; }
.reg-phone-item {
    display: flex; align-items: center; gap: 8px; padding: 8px 12px;
    cursor: pointer; font-size: 13px; color: #333;
}
.reg-phone-item:hover { background: #f5f6fb; }
.reg-phone-item img { width: 18px; height: 13px; border-radius: 2px; }
.reg-phone-item .code { color: #757575; margin-left: auto; font-weight: 600; }

/* CAPTCHA in register */
.reg-form .captcha-box { display: flex; align-items: center; gap: 12px; }
.reg-form .captcha-question {
    display: flex; align-items: center; justify-content: center;
    min-width: 120px; height: 40px; background: linear-gradient(135deg, #1A237E, #283593);
    color: #FFB300; font-size: 16px; font-weight: 800; letter-spacing: 2px;
    border-radius: 8px; user-select: none; font-family: 'Courier New', monospace;
}
.reg-form .captcha-input { max-width: 80px; text-align: center; font-size: 16px; font-weight: 700; }

/* Terms */
.reg-terms { display: flex; align-items: center; gap: 8px; margin: 14px 0; font-size: 12px; color: #616161; position: relative; z-index: 1; }
.reg-terms a { color: #FF8F00; font-weight: 600; }
.reg-modal-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, #1A237E 0%, #283593 30%, #FF8F00 70%, #FFB300 100%); z-index: 0; pointer-events: none; }

.reg-submit-btn {
    width: 100%; padding: 13px; background: linear-gradient(135deg, #1A237E, #283593);
    color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 700;
    cursor: pointer; font-family: 'Inter', sans-serif; position: relative; overflow: hidden;
}
.reg-submit-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(135deg, #FF8F00, #FFB300); transition: left 0.4s ease; }
.reg-submit-btn:hover::before { left: 0; }
.reg-submit-btn > * { position: relative; z-index: 1; }

.reg-modal-footer { text-align: center; font-size: 12px; color: #757575; margin-top: 16px; padding-top: 14px; position: relative; z-index: 1; }
.reg-login-link { color: #FF8F00; font-weight: 700; margin-left: 4px; }

[dir="rtl"] .reg-modal-close { left: auto; right: 16px; }
[dir="rtl"] .reg-modal-card::before, [dir="rtl"] .reg-modal-card::after { right: auto; left: -60px; }
[dir="rtl"] .reg-modal-card::after { left: -20px; }
[dir="rtl"] .reg-terms { flex-direction: row-reverse; }
[dir="rtl"] .reg-phone-row { flex-direction: row-reverse; }

@media (max-width: 580px) {
    .reg-modal-card { padding: 32px 20px 24px; }
    .reg-row { grid-template-columns: 1fr; }
}

/* ============================================
   LOGIN MODAL
   ============================================ */

.login-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
}

.login-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-modal-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8, 13, 46, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.login-modal-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 20px;
    padding: 44px 40px 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 1;
}

/* Unique corner accent - navy + gold geometric shapes */
.login-modal-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #1A237E, #283593);
    border-radius: 50%;
    z-index: 0;
}

.login-modal-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF8F00, #FFB300);
    border-radius: 50%;
    z-index: 0;
}

.login-modal-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #1A237E 0%, #283593 30%, #FF8F00 70%, #FFB300 100%);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f2f8;
    border: none;
    color: #1A237E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.login-modal-close:hover {
    background: #1A237E;
    color: #fff;
}

.login-modal-header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.login-modal-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.login-modal-logo img {
    height: 32px;
    filter: invert(52%) sepia(95%) saturate(1000%) hue-rotate(3deg) brightness(100%) contrast(101%);
}

.login-modal-logo .logo-text {
    font-size: 22px;
    font-weight: 700;
}

.login-modal-logo .ride { color: #1A237E; }
.login-modal-logo .ago { color: #FF8F00; }

.login-modal-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 6px;
}

.login-modal-header p {
    font-size: 14px;
    color: #757575;
}

.login-modal-form {
    position: relative;
    z-index: 1;
}

.login-input-group {
    position: relative;
    margin-bottom: 14px;
}

.login-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9E9E9E;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.login-input-group input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1.5px solid #E0E0E0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #212121;
    background: #fafafa;
    transition: all 0.2s ease;
}

.login-input-group input:focus {
    outline: none;
    border-color: #FF8F00;
    background: #fff;
}

.login-input-group input:focus + .login-input-toggle,
.login-input-group:focus-within .login-input-icon {
    color: #FF8F00;
}

.login-input-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9E9E9E;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}

.login-input-toggle:hover {
    color: #1A237E;
}

.login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0 20px;
}

.login-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #616161;
    cursor: pointer;
    user-select: none;
}

.login-checkbox input {
    display: none;
}

.login-checkbox .checkmark {
    width: 16px;
    height: 16px;
    border: 1.5px solid #BDBDBD;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.login-checkbox input:checked + .checkmark {
    background: #FF8F00;
    border-color: #FF8F00;
}

.login-checkbox input:checked + .checkmark::after {
    content: '';
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px);
}

.login-forgot {
    font-size: 13px;
    color: #1A237E;
    font-weight: 600;
    text-decoration: none;
}

.login-forgot:hover {
    color: #FF8F00;
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1A237E 0%, #283593 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.login-submit-btn::before {
    display: none;
}

.login-submit-btn > * {
    position: relative;
    z-index: 1;
}

.login-modal-footer {
    text-align: center;
    font-size: 13px;
    color: #757575;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.login-register-link {
    color: #FF8F00;
    font-weight: 700;
    margin-left: 4px;
    text-decoration: none;
}

.login-register-link:hover {
    color: #E07D00;
    text-decoration: underline;
}

/* RTL support */
[dir="rtl"] .login-modal-close { left: auto; right: 16px; }
[dir="rtl"] .login-modal-card::before,
[dir="rtl"] .login-modal-card::after { right: auto; left: -60px; }
[dir="rtl"] .login-modal-card::after { left: -20px; }
[dir="rtl"] .login-input-icon { left: auto; right: 14px; }
[dir="rtl"] .login-input-group input { padding: 14px 44px 14px 14px; }
[dir="rtl"] .login-input-toggle { right: auto; left: 14px; }
[dir="rtl"] .login-register-link { margin-left: 0; margin-right: 4px; }

@media (max-width: 480px) {
    .login-modal-card { padding: 40px 24px 28px; }
    .login-modal-header h2 { font-size: 22px; }
}

/* ============================================
   PARTNERS SLIDER
   ============================================ */

.partners-slider {
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    padding: 8px 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-slider.grabbing {
    cursor: grabbing;
}

.partners-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: partnersScroll 40s linear infinite;
    align-items: center;
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

.partners-slider.dragging .partners-track {
    animation: none;
}

@keyframes partnersScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    min-width: 100px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-height: 100%;
    max-width: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    -webkit-user-drag: none;
}

@media (max-width: 768px) {
    .partners-track { gap: 40px; }
    .partner-logo { height: 48px; min-width: 110px; }
    .partner-logo img { max-width: 130px; }
}

/* ============================================
   REVIEWS SLIDER
   ============================================ */

.reviews-slider-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card {
    min-width: 280px;
    max-width: 280px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    flex-shrink: 0;
}

.review-stars {
    color: #FBBC04;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
}

.review-score {
    display: inline-block;
    margin-left: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
}

.review-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 12px 0 16px;
    min-height: 60px;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-200);
    padding-top: 12px;
}

.review-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
}

.review-date {
    font-size: 11px;
    color: var(--gray-400);
}

.reviews-nav {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-right: 80px;
}

.reviews-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.review-badge {
    font-size: 15px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-badge b {
    color: var(--gray-800);
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: var(--navy);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-light);
}

.stat-item .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ============================================
   APP DOWNLOAD SECTION
   ============================================ */

.app-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8f0 0%, #f8f9ff 100%);
}

.app-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.app-text p {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.7;
}

.app-features {
    list-style: none;
    margin-bottom: 32px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.app-features li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,143,0,0.1);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.store-buttons {
    display: flex;
    gap: 12px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-900);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.store-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

.store-btn .store-icon {
    font-size: 24px;
}

.store-btn .store-label {
    font-size: 10px;
    color: var(--gray-400);
    line-height: 1;
}

.store-btn .store-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.app-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--gray-900);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--white);
}

.phone-screen .phone-logo {
    filter: invert(52%) sepia(95%) saturate(1000%) hue-rotate(3deg) brightness(100%) contrast(101%);
    width: 64px;
}

.phone-screen .phone-text {
    font-size: 20px;
    font-weight: 600;
}

.phone-screen .phone-text span { color: var(--gold-light); }

/* ============================================
   PARTNERSHIP SECTION
   ============================================ */

.partnership-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.partnership-text {
    flex: 1;
}

.partnership-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 28px;
}

.partner-block {
    margin-bottom: 24px;
}

.partner-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.partner-block h3:hover {
    color: var(--gold);
}

.partner-block p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 8px;
}

.partner-block ul {
    list-style: none;
    padding: 0;
}

.partner-block ul li {
    font-size: 13px;
    color: var(--gray-600);
    padding-left: 18px;
    position: relative;
    margin-bottom: 4px;
}

.partner-block ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.partnership-img {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-img img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partnership-content { flex-direction: column; }
    .partnership-img { width: 100%; }
}

/* ============================================
   CTA SECTION (removed)
   ============================================ */

.cta-section {
    padding: 80px 0;
    background: var(--navy);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 30px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-brand .logo-text .ride { color: var(--white); }

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 280px;
}

.footer-countries {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 6px 24px;
    margin-top: 12px;
    max-height: 188px;
}

.footer-countries a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-500);
    transition: var(--transition);
    white-space: nowrap;
}

.footer-countries a:hover {
    color: var(--gold-light);
}

.footer-countries a img {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 0.5px rgba(255,255,255,0.15);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--gray-500);
}

.footer-col ul a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.payment-icons .pay-card {
    height: 28px;
    border-radius: 4px;
}

.payment-icons .pay-checkout {
    height: 18px;
    opacity: 0.7;
    filter: brightness(2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .hero-card { max-width: 100%; padding: 28px; }
    .hero-card h1 { font-size: 32px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .app-content { flex-direction: column; text-align: center; }
    .app-features li { justify-content: center; }
    .store-buttons { justify-content: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .hero { min-height: 380px; padding: 100px 0 30px; }
    .hero-card h1 { font-size: 26px; }
    .hero-card { padding: 20px 24px; margin-bottom: 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .vehicles-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .hero-actions { flex-direction: column; }
}

/* Mobile menu drawer (opens when hamburger is tapped) — only on mobile widths */
@media (max-width: 768px) {
    .nav.mobile-open {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px 20px 22px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-bottom: 2px solid var(--gold);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    /* Keep the hamburger in its header position so users can tap it to close */
    .nav.mobile-open .menu-toggle {
        position: fixed;
        top: 0;
        right: 16px;
        height: 72px;
        width: 40px;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        background: transparent;
    }

    /* Backdrop dim behind drawer */
    .nav.mobile-open::before {
        content: '';
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.35);
        z-index: -1;
    }

    .nav.mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav.mobile-open .nav-links li {
        border-bottom: 1px solid var(--gray-200);
    }

    .nav.mobile-open .nav-links a {
        display: block;
        padding: 14px 4px;
        font-size: 15px;
        font-weight: 600;
        color: var(--gray-800);
    }

    .nav.mobile-open .nav-links a::after { display: none; }

    .nav.mobile-open .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--gray-200);
    }

    .nav.mobile-open .nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 13px;
        font-size: 14px;
        border-radius: var(--radius-md);
    }

    .nav.mobile-open .btn-outline {
        background: transparent;
        border: 1.5px solid var(--navy);
        color: var(--navy);
    }

    .nav.mobile-open .btn-outline:hover {
        background: var(--navy);
        color: var(--white);
    }

    .nav.mobile-open .lang-dropdown {
        order: 3;
        margin-top: 4px;
    }

    .nav.mobile-open .lang-btn {
        color: var(--gray-700);
        width: 100%;
        justify-content: center;
        padding: 11px;
        border: 1px solid var(--gray-300);
        border-radius: var(--radius-md);
        font-size: 13px;
    }

    .nav.mobile-open .lang-btn:hover {
        background: var(--gray-100);
    }

    .nav.mobile-open .lang-menu {
        position: static;
        margin-top: 8px;
        width: 100%;
        max-height: 220px;
        box-shadow: none;
        border: 1px solid var(--gray-200);
    }
}

/* Hamburger -> X animation */
.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Body scroll lock when drawer is open */
body.nav-open {
    overflow: hidden;
}

/* ============================================
   RTL SUPPORT (Arabic)
   ============================================ */

[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

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

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

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

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

[dir="rtl"] .hero-card {
    left: auto;
    right: 84px;
}

[dir="rtl"] .hero-card-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-card-stores {
    margin-left: 0;
    margin-right: 20px;
}

[dir="rtl"] .benefits-grid {
    direction: rtl;
}

[dir="rtl"] .benefit-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .section-header {
    text-align: center;
}

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

[dir="rtl"] .vehicle-slide-info {
    text-align: right;
}

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

[dir="rtl"] .slider-nav {
    right: auto;
    left: 30px;
}

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

[dir="rtl"] .app-showcase-text {
    text-align: right;
}

[dir="rtl"] .app-check-list li {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

[dir="rtl"] .review-card {
    text-align: right;
}

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

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

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

[dir="rtl"] .partner-block ul li {
    padding-left: 0;
    padding-right: 18px;
}

[dir="rtl"] .partner-block ul li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .footer-col {
    text-align: right;
}

[dir="rtl"] .footer-countries a {
    flex-direction: row-reverse;
}

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

[dir="rtl"] .lang-menu {
    right: auto;
    left: 0;
}

[dir="rtl"] .phone-fan {
    transform: scaleX(-1);
}

[dir="rtl"] .phone-fan .iphone-screen {
    transform: scaleX(-1);
}

[dir="rtl"] .reviews-nav {
    padding-right: 80px;
    padding-left: 0;
}

/* ============================================
   ENHANCED RESPONSIVE - ALL DEVICES
   ============================================ */

/* Tablet landscape */
@media (max-width: 1200px) {
    .container { padding: 0 20px; }
    .hero-card { left: 40px; }
    [dir="rtl"] .hero-card { right: 40px; left: auto; }
    .phone-fan { transform: scale(0.9); }
}

/* Tablet portrait */
@media (max-width: 968px) {
    .hero-card {
        left: 24px;
        max-width: calc(100% - 48px);
    }
    [dir="rtl"] .hero-card { right: 24px; left: auto; }

    .hero-card h1 { font-size: 28px; }
    .hero-card-actions { flex-wrap: wrap; }

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

    .app-showcase-content { flex-direction: column !important; }
    .app-showcase-text { text-align: center !important; }
    .app-check-list li { justify-content: center !important; }

    .partnership-content { flex-direction: column !important; }
    .partnership-text { text-align: center !important; }
    .partnership-img { width: 100%; }

    .phone-carousel { min-height: 400px; }
    .phone-fan { transform: scale(0.8); }

    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

    .vehicle-slide { flex-direction: column !important; gap: 20px; }
    .vehicle-slide-info { text-align: center !important; }

    .reviews-nav { padding-right: 0; justify-content: center; }
    [dir="rtl"] .reviews-nav { padding-right: 0; }
}

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

    .nav { gap: 0; justify-content: flex-end; }
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .menu-toggle { display: flex; margin-left: auto; }

    .hero { min-height: 500px; }
    .hero-card {
        top: -280px;
        left: 16px;
        max-width: calc(100% - 32px);
        padding: 20px;
    }
    [dir="rtl"] .hero-card { right: 16px; left: auto; }
    .hero-card h1 { font-size: 24px; }
    .hero-card-actions { gap: 8px; }
    .hero-book-btn { padding: 10px 20px; font-size: 13px; }
    .hero-store-btn { font-size: 10px; }
    .hero-card-stores { margin-left: 10px; }
    [dir="rtl"] .hero-card-stores { margin-left: 0; margin-right: 10px; }

    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .benefit-icon { font-size: 18px; }
    .benefit-text strong { font-size: 11px; }
    .benefit-text span { font-size: 10px; }

    .vehicle-tabs { gap: 6px; }
    .vehicle-tab { min-width: 70px; padding: 8px 10px; }
    .vehicle-tab .tab-icon { height: 24px; }
    .vehicle-tab span { font-size: 10px; }
    .vehicle-slider { height: auto; min-height: 300px; padding: 20px; }

    .phone-fan { transform: scale(0.65); }
    .phone-carousel { min-height: 340px; }

    .review-card { min-width: 240px; max-width: 240px; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-countries { max-height: none; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    [dir="rtl"] .footer-bottom { flex-direction: column; }
}

/* Mobile small */
@media (max-width: 480px) {
    .hero { min-height: 420px; }
    .hero-card { top: -240px; padding: 16px; }
    .hero-card h1 { font-size: 20px; }
    .hero-card-actions { flex-direction: column; align-items: flex-start; }
    [dir="rtl"] .hero-card-actions { align-items: flex-end; }
    .hero-card-stores { margin-left: 0; margin-top: 8px; }
    [dir="rtl"] .hero-card-stores { margin-right: 0; }

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

    .section { padding: 50px 0; }
    .section-header h2 { font-size: 24px; }

    .phone-fan { transform: scale(0.55); }
    .phone-carousel { min-height: 300px; }

    .app-showcase-text h2 { font-size: 24px; }
    .partnership-text h2 { font-size: 24px; }

    .payment-icons { flex-wrap: wrap; justify-content: center; }
}
