/* 
   -----------------------------------------------------------------------------------
   ORARIDE ULTRA - PHASE 3 REDESIGN
   Theme: Cyber-Premium Dark & Neon
   Author: Antigravity
   ----------------------------------------------------------------------------------- 
*/

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    /* --- CORE PALETTE (DARK MODE REVERT) --- */
    --bg-core: #050505;
    /* Deep Black */
    --bg-surface: #0a0a0a;
    /* Dark Surface */
    --bg-glass: rgba(10, 10, 10, 0.7);
    /* Dark Glass */

    --accent-neon: #f9d63d;
    /* Bright Neon Yellow */
    --accent-warm: #FFD700;

    --text-main: #ffffff;
    /* White text */
    --text-muted: #aaaaaa;
    /* Light Grey */
    --text-light: #ffffff;
    --text-body: #606060;
    /* Standard Grey for white backgrounds */

    /* --- TYPOGRAPHY --- */
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* --- UTILITIES --- */
    --radius-xs: 4px;
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-full: 9999px;

    --border-subtle: rgba(255, 255, 255, 0.1);
    --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 5px 15px rgba(249, 214, 61, 0.4);

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASE --- */
body {
    background-color: var(--bg-core);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-out-expo);
}

/* --- UTILITY CLASSES --- */
.text-neon {
    color: var(--accent-neon);
}

.text-initial {
    text-transform: initial !important;
}

.bg-neon {
    background-color: var(--accent-neon);
    color: var(--bg-core);
}

.bg-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
}

.bg-light-mode {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
}

.bg-light-soft {
    background-color: #f8f9fa !important;
}

/* Mobile Helper Classes */
.pt-72 {
    padding-top: 80px !important;
}

@media (max-width: 575.98px) {

    .app-btn-group .btn-executive,
    .app-btn-group .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* --- LAYOUTS --- */
.section-spacer {
    padding: 60px 0;
    /* Reduced from 80px for tighter layout */
}

/* --- BUTTONS --- */
.btn-ultra {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: var(--accent-neon);
    color: #1a1a1a;
    /* Dark text on Yellow for contrast */
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    z-index: 1;
}

.btn-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-ultra:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 30px rgba(249, 214, 61, 0.4), 0 0 50px rgba(249, 214, 61, 0.2);
}

/* Shimmer Effect for Primary Buttons */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translate(-100%, -100%) rotate(45deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(45deg);
    }
}

.btn-ultra:hover::before {
    opacity: 0.2;
}

.btn-outline-ultra {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
}

.btn-outline-ultra:hover {
    border-color: var(--accent-neon);
    color: var(--accent-neon);
}

/* --- CARDS --- */
.card-ultra {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: all 0.4s var(--ease-out-expo);
}

.card-ultra:hover {
    border-color: var(--accent-neon);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.1), 0 0 30px rgba(249, 214, 61, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.card-ultra-light {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: all 0.4s var(--ease-out-expo);
    color: #1a1a1a;
}

.card-ultra-light:hover {
    background: #ffffff;
    border-color: var(--accent-neon);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* --- HEADER --- */
.header-ultra {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 1000;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    background: rgba(5, 5, 5, 0.7);
    /* Dark Glass matching bg-core */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- HERO --- */
.hero-ultra {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: var(--bg-core);
    overflow: hidden;
}

.hero-ultra .hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    /* Slight increase */
}

.hero-ultra .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 40px;
}

/* --- FOOTER --- */
.footer-ultra {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-ultra h5 {
    color: var(--text-main);
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.footer-ultra ul {
    list-style: none;
    padding: 0;
}

.footer-ultra li {
    margin-bottom: 12px;
}

.footer-ultra a {
    color: var(--text-muted);
}

.footer-ultra a:hover {
    color: var(--accent-neon);
    padding-left: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    color: var(--text-main);
    margin-right: 10px;
    border: 1px solid var(--border-subtle);
}

.footer-social a:hover {
    background: var(--accent-neon);
    color: var(--bg-core);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- INNER PAGES --- */
/* --- MODERN INNER HERO --- */
.hero-modern-inner {
    position: relative;
    padding: 180px 0 100px;
    background: var(--bg-core);
    overflow: hidden;
    text-align: center;
    z-index: 1;
}

/* Subtle Grid Background */
.hero-modern-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at center, rgba(30, 30, 30, 0.4) 0%, transparent 70%);
    z-index: -2;
}

.hero-modern-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(800px) rotateX(60deg) translateY(0);
    transform-origin: top center;
    animation: inner-grid-move 25s linear infinite;
    opacity: 0.4;
    z-index: -1;
}

@keyframes inner-grid-move {
    0% {
        transform: perspective(800px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(800px) rotateX(60deg) translateY(-60px);
    }
}

.hero-modern-inner h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 40%, #888888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.breadcrumb-ultra {
    background: transparent;
    justify-content: center;
    padding: 0;
}

.breadcrumb-ultra .breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb-ultra .breadcrumb-item.active {
    color: var(--accent-neon);
}

/* --- FORMS --- */
.input-ultra {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.input-ultra:focus {
    border-color: var(--accent-neon);
    box-shadow: 0 0 15px rgba(232, 248, 54, 0.1);
    outline: none;
}

/* --- FAQ ACCORDION --- */
/* --- FAQ ACCORDION (EXECUTIVE) --- */
.faq-item-executive {
    background: var(--card-glass-executive);
    border: 1px solid var(--border-executive);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
}

.faq-item-executive:hover {
    border-color: var(--accent-neon);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.faq-item-executive.active {
    border-color: var(--accent-neon);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 15px 40px -10px rgba(249, 214, 61, 0.15);
}

.faq-question-executive {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s;
}

.faq-question-executive:hover {
    color: var(--accent-neon);
}

.faq-answer-executive {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-slate-400);
    border-top: 1px solid transparent;
}

.faq-item-executive.active .faq-answer-executive {
    padding: 20px 30px 30px;
    max-height: 800px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item-executive.active .faq-question-executive {
    color: var(--accent-neon);
}

.faq-icon-executive {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    color: var(--accent-neon);
}

.faq-item-executive.active .faq-icon-executive {
    transform: rotate(180deg);
    background: var(--accent-neon);
    color: #000;
}

/* --- COMPANY / INVESTOR CARDS --- */
.investor-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.investor-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-neon);
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: var(--bg-glass);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-display);
    color: var(--accent-neon);
    display: block;
    margin-bottom: 10px;
}

/* --- UPDATED HERO --- */
.hero-ultra {
    /* "City Road" Overlay with LIGHTER Gradient for Visibility */
    background:
        linear-gradient(to bottom, rgba(5, 5, 5, 0.7), rgba(10, 10, 10, 0.6)),
        url('../images/home1/video-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

/* Ensure text is readable on dark bg */
.text-neon {
    color: var(--accent-neon);
    /* Bright Neon Yellow */
}

/* Keep buttons bright */
.btn-ultra {
    background: var(--accent-neon);
    color: #000000;
    /* Black text on bright yellow */
}

.hero-phone-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transform: rotate(0deg);
    /* FORCE STRAIGHT */
    transition: transform 0.5s ease;
}

.hero-phone-img:hover {
    transform: scale(1.02);
    /* No rotation on hover */
}

/* --- REVIEWS SECTION --- */
.review-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    margin-top: 50px;
    padding-bottom: 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.review-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.review-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 30px;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease-out-expo);
    height: 100%;
    display: flex;
    flex-direction: column;

    /* Horizontal Layout Logic */
    min-width: calc(25% - 22.5px);
    /* 4 cards per view */
    flex: 0 0 calc(25% - 22.5px);
    scroll-snap-align: start;
}

@media (max-width: 1200px) {
    .review-card {
        min-width: calc(33.333% - 20px);
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 991px) {
    .review-card {
        min-width: calc(50% - 15px);
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .review-card {
        min-width: 85%;
        flex: 0 0 85%;
    }
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-neon);
    box-shadow: var(--shadow-neon);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* --- PREMIUM CUSTOMER STORIES --- */
.review-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    min-width: 350px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    margin-right: 20px;
}

.review-card-premium:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-neon);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-card-premium::before {
    content: '\f10e';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-neon), #ff9f43);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(249, 214, 61, 0.3);
}

.review-meta h5 {
    font-size: 1.15rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.review-meta span {
    font-size: 0.85rem;
    color: var(--text-slate-400);
}

.review-text {
    color: var(--text-slate-100);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.review-stars {
    color: var(--accent-neon);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.review-nav-container {
    display: flex;
    gap: 10px;
}

.review-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-nav-btn:hover {
    background: var(--accent-neon);
    color: #000;
    border-color: var(--accent-neon);
    transform: scale(1.1);
}

/* --- MOBILE APP POPUP --- */
.ora-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ora-overlay.ora-show {
    opacity: 1;
    visibility: visible;
}

.ora-slide-up {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-radius: 20px 20px 0 0;
    padding: 30px 20px;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.ora-slide-up.ora-show {
    bottom: 0;
}

.ora-row-slide-up {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.ora-row-slide-up:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ora-left-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ora-image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ora-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.ora-btn-1,
.ora-btn-2 {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.ora-btn-1 {
    background: var(--accent-neon);
    color: var(--bg-core);
}

.ora-btn-2 {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
}

.ora-btn-2:hover {
    color: var(--text-main);
    border-color: var(--text-main);
}

/* --- REVIEW NAVIGATION --- */
.review-nav-container {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
    padding-right: 10px;
}

.review-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.review-nav-btn:hover {
    background: var(--accent-neon);
    color: var(--bg-core);
    border-color: var(--accent-neon);
    transform: scale(1.1);
}

/* --- HERO PHONE FRAME --- */
.phone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    box-shadow: 0 0 0 12px #1a1a1a, 0 0 0 14px #333, 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin: 0 auto;
    transform: rotate(0deg);
    /* FORCE STRAIGHT */
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
    /* Matches frame radius minus bezel */
}

/* --- BACK TO TOP BUTTON --- */
.top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-neon);
    color: var(--bg-core);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(232, 248, 54, 0.3);
    transition: all 0.3s var(--ease-out-expo);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(232, 248, 54, 0.5);
}

/* --- HIDE POPUP ON DESKTOP --- */
/* --- HIDE POPUP ON DESKTOP UNLESS TRIGGERED --- */
@media (min-width: 992px) {

    .ora-slide-up:not(.ora-show),
    .ora-overlay:not(.ora-show) {
        display: none !important;
    }
}

/* --- TRAFFIC ANIMATION --- */
.traffic-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.traffic-icon {
    position: absolute;
    color: var(--accent-neon);
    opacity: 0.15;
    font-size: 2rem;
    will-change: transform;
    z-index: -1;
    /* Prevent overlapping content */
}

/* Initial POSITIONS */
.car-1 {
    top: 15%;
    left: -100px;
    font-size: 3rem;
}

.bike-1 {
    top: 40%;
    right: -100px;
    font-size: 2.5rem;
    transform: scaleX(-1);
}

/* Facing left */
.auto-1 {
    top: 65%;
    left: -100px;
    font-size: 4rem;
}

.car-2 {
    top: 85%;
    right: -100px;
    font-size: 3.5rem;
    transform: scaleX(-1);
}

.bike-2 {
    top: 25%;
    left: -100px;
    font-size: 2rem;
}

/* --- MOBILE MENU & REFINEMENTS --- */
.mobile-toggle {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    position: fixed;
    top: 20px;
    /* Float from top */
    right: -100%;
    width: 320px;
    height: auto;
    /* Adapts to content */
    max-height: calc(100vh - 40px);
    /* Ensure it fits in viewport */
    background-color: #000000 !important;
    z-index: 100000;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    /* Nice rounded corners */
    visibility: visible;
    opacity: 1;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 20px;
    /* Float from right edge */
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-nav li {
    margin-bottom: 20px;
}

.mobile-nav a {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff !important;
    /* Force white text */
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--accent-neon);
    padding-left: 10px;
}

.mobile-menu-footer {
    margin-top: auto;
}

@media (max-width: 576px) {

    /* Side padding increase */
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    /* Decrease font size */
    html {
        font-size: 14px;
    }

    .hero-ultra .hero-title {
        font-size: 2.5rem;
        /* Specific adjustment for hero title */
    }

    .phone-frame {
        width: 260px;
        /* Resize phone frame for smaller screens */
        height: 520px;
    }
}

/* --- FINAL HERO ALIGNMENT FIX --- */
.hero-modern-title {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

/* --- BUTTON FIX --- */
.btn-executive {
    background: var(--accent-neon);
    color: #000;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 30px rgba(249, 214, 61, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-executive:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 214, 61, 0.5);
    background: #fff;
    color: #000;
}

.btn-premium-neon {
    background: var(--accent-neon);
    color: #000 !important;
    border: none;
    padding: 16px 45px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(249, 214, 61, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-premium-neon:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(249, 214, 61, 0.6);
    background: #fff;
}

.btn-premium-neon i {
    transition: transform 0.3s ease;
}

.btn-premium-neon:hover i {
    transform: translateX(5px);
}

/* --- EXECUTIVE DESIGN SYSTEM (PHASE 4) --- */

:root {
    --bg-navy-surface: #0f172a;
    /* Deep Navy Surface */
    --bg-navy-deep: #020617;
    /* Darker Navy */
    --card-glass-executive: rgba(30, 41, 59, 0.4);
    /* Slate Glass */
    --border-executive: rgba(148, 163, 184, 0.1);
    /* Slate Border */
    --text-slate-300: #cbd5e1;
    --text-slate-400: #94a3b8;
}

/* --- TRUST BAR --- */
.trust-bar {
    background: var(--bg-navy-deep);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-executive);
    overflow: hidden;
}

.trust-label {
    color: var(--text-slate-400);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.3s;
}

.trust-logos:hover {
    opacity: 0.8;
}

.trust-logo-item {
    font-size: 1.5rem;
    color: var(--text-slate-300);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* --- BENTO GRID FEATURES --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    /* Reduced gap */
}

@media (min-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 280px);
        /* Slightly shorter rows */
    }

    .bento-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.bento-card {
    background: var(--card-glass-executive);
    border: 1px solid var(--border-executive);
    border-radius: 20px;
    /* Slightly tighter radius */
    padding: 30px;
    /* Reduced from 40px */
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-card:hover {
    border-color: var(--accent-neon);
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.6);
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--accent-neon);
    margin-bottom: auto;
    /* Pushes content down */
    background: rgba(249, 214, 61, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bento-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.bento-text {
    color: var(--text-slate-400);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- APP SHOWCASE (FLOATING) --- */
.app-showcase-section {
    padding: 100px 0;
    /* Reduced from 120px */
    position: relative;
    background: var(--bg-navy-surface);
    overflow: hidden;
}

.text-neon-gradient {
    background: linear-gradient(to right, #ffffff, var(--accent-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(249, 214, 61, 0.3);
}

.map-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/home1/video-bg.jpg');
    /* Reuse existing or placehold */
    background-size: cover;
    opacity: 0.15;
    /* Increased opacity slightly */
    mix-blend-mode: overlay;
    pointer-events: none;
    /* Fix: Allow clicks to pass through overlay */
}

/* Ensure button is clickable above overlay */
.app-showcase-section .btn-premium-neon {
    position: relative;
    z-index: 10;
}

.device-floating-container {
    position: relative;
    z-index: 2;
    perspective: 1500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--accent-neon);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
    animation: pulse-glow 4s infinite alternate;
}

@media (max-width: 991px) {
    .app-showcase-section .row {
        flex-direction: column;
        text-align: center;
    }

    .app-showcase-section .d-flex {
        justify-content: center;
        margin-bottom: 40px;
        /* create space between button and image */
    }

    .device-floating-container {
        margin-top: 20px;
    }

    .device-mockup-float {
        max-width: 80%;
        margin: 0 auto;
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.1;
        transform: scale(0.9);
    }

    100% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

.device-mockup-float {
    max-width: 90%;
    /* Adjusted for new image */
    transform: rotateY(-10deg) rotateX(5deg);
    filter: drop-shadow(-30px 40px 60px rgba(0, 0, 0, 0.7));
    transition: transform 0.5s ease;
}

.device-mockup-float:hover {
    transform: rotateY(-5deg) rotateX(0deg) scale(1.02);
}

/* --- RIDER / DRIVER TOGGLE --- */
.toggle-section {
    padding: 80px 0;
    /* Reduced from 100px */
    background: var(--bg-navy-deep);
}

.toggle-switch-container {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 4px;
    /* Tighter padding */
    margin-bottom: 40px;
    /* Reduced margin */
    border: 1px solid var(--border-executive);
}

.toggle-btn {
    padding: 12px 30px;
    border-radius: 40px;
    color: var(--text-slate-400);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: var(--accent-neon);
    color: #020617;
    box-shadow: 0 5px 20px rgba(249, 214, 61, 0.3);
}

.toggle-content {
    display: none;
    animation: fade-up 0.5s ease;
}

.toggle-content.active {
    display: block;
}

/* --- EXECUTIVE FOOTER --- */
.footer-executive {
    background: #000;
    border-top: 1px solid var(--border-executive);
    padding: 100px 0 40px;
    font-size: 0.95rem;
}

.footer-col-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-link-list li {
    margin-bottom: 15px;
}

.footer-link-list a {
    color: var(--text-slate-400);
    transition: color 0.2s;
}

.footer-link-list a:hover {
    color: var(--accent-neon);
}

.app-store-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.app-store-badge {
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.app-store-badge:hover {
    opacity: 1;
}

/* --- HYBRID LIGHT/DARK THEME --- */
:root {
    --bg-light-surface: #f8fafc;
    /* Slate 50 */
    --text-dark-executive: #0f172a;
    /* Slate 900 */
    --text-slate-600: #475569;
    --card-light-executive: #ffffff;
    --shadow-light-executive: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.bg-light-surface {
    background: var(--bg-light-surface) !important;
}

/* Light Mode Bento Card */
.bento-card-light {
    background: var(--card-light-executive);
    border: 1px solid #e2e8f0;
    /* Slate 200 */
    box-shadow: var(--shadow-light-executive);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-neon);
}

.bento-card-light .bento-title {
    color: var(--text-dark-executive);
}

.bento-card-light .bento-text {
    color: var(--text-slate-600);
}

.bento-card-light .bento-icon {
    background: rgba(249, 214, 61, 0.15);
    /* Slightly darker bg for contrast */
    color: #ca8a04;
    /* Darker yellow/gold */
}

/* Light Mode Text Utilities */
.text-dark-executive {
    color: var(--text-dark-executive) !important;
}

.text-slate-600 {
    color: var(--text-slate-600) !important;
}

/* Overlay for Light Map */
.map-bg-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/home1/video-bg.jpg');
    background-size: cover;
    opacity: 0.1;
    filter: invert(1);
    /* Invert dark map to light */
    mix-blend-mode: multiply;
}

/* --- DYNAMIC HERO MOTION FRAMEWORK --- */

/* 1. Pulse Map Background */
.pulse-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.pulse-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-neon);
    animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(14, 165, 233, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

/* 2. Hero Visual Container (Relativized for floating elements) */
.hero-visual-dynamic {
    position: relative;
    z-index: 10;
    height: 600px;
    /* Taller for spread */
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* 3. Floating Glass Cards */
.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.6);
    /* Dark Glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 12px 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.floating-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--accent-neon);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(249, 214, 61, 0.2);
}

/* --- TRAFFIC BACKGROUND ANIMATION --- */
.hero-traffic-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    /* Subtler for background */
}

/* Lane Dividers (Top View Road) */
.hero-road-lanes {
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    bottom: 0;
    border-left: 2px dashed rgba(255, 255, 255, 0.1);
    border-right: 2px dashed rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg,
            transparent 33%, rgba(255, 255, 255, 0.05) 33.1%,
            rgba(255, 255, 255, 0.05) 33.3%, transparent 33.4%,
            transparent 66%, rgba(255, 255, 255, 0.05) 66.1%,
            rgba(255, 255, 255, 0.05) 66.3%, transparent 66.4%);
}

.traffic-car {
    position: absolute;
    font-size: 1.8rem;
    color: var(--accent-neon);
    filter: drop-shadow(0 0 10px rgba(249, 214, 61, 0.6));
    will-change: transform;
}

/* Headlights Glow */
.traffic-car::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 30px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    top: -20px;
    left: 20%;
    opacity: 0.8;
}

.traffic-car::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 30px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    top: -20px;
    right: 20%;
    opacity: 0.8;
}

@keyframes car-flow-up {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-20vh) rotate(0deg);
        opacity: 0;
    }
}

@keyframes car-flow-down {
    0% {
        transform: translateY(-20vh) rotate(180deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(110vh) rotate(180deg);
        opacity: 0;
    }
}

.car-up-fast {
    animation: car-flow-up 10s linear infinite;
}

.car-up-slow {
    animation: car-flow-up 20s linear infinite;
}

.car-down-fast {
    animation: car-flow-down 12s linear infinite;
}

.car-down-slow {
    animation: car-flow-down 25s linear infinite;
}

/* Text Gradient Neon */
.text-gradient-neon {
    background: linear-gradient(135deg, #fff 30%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Specific Card Positions & Animations */
.card-driver {
    top: 15%;
    left: 0;
    animation: float-y 6s ease-in-out infinite;
}

.card-rating {
    bottom: 20%;
    right: 5%;
    animation: float-y 7s ease-in-out infinite 1s;
    /* Delayed */
}

.card-shield {
    top: 25%;
    right: -10px;
    border-radius: 50%;
    /* Circular */
    padding: 15px;
    animation: float-y 5s ease-in-out infinite 0.5s;
}

/* Phone Mockup override for dynamic hero */
.phone-mockup-dynamic {
    width: 340px;
    max-width: 90vw;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    animation: float-y 8s ease-in-out infinite;
    z-index: 15;
}

/* Float Animations */
@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Text Highlights */
.dynamic-highlight {
    font-weight: 700;
    color: var(--accent-neon);
}

.text-xs {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* --- NEW COMPONENT: PREMIUM TABS & CARDS (LIGHT THEME) --- */
.nav-pills-ultra {
    background: rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-full);
    padding: 6px;
    display: inline-flex;
    gap: 5px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link-ultra {
    border-radius: var(--radius-full);
    padding: 12px 30px;
    color: var(--text-muted);
    font-weight: 600;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

.nav-link-ultra:hover {
    color: #000;
}

@media (max-width: 768px) {
    .nav-pills-ultra {
        display: inline-flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        max-width: 100%;
        padding: 4px;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .nav-pills-ultra::-webkit-scrollbar {
        display: none;
    }

    .nav-link-ultra {
        padding: 10px 15px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
}

.nav-link-ultra.active {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Feature Card Premium - strictly light theme */
.feature-card-premium {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-neon);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Soft dark shadow */
    border-color: transparent;
}

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

.pc-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(249, 214, 61, 0.1);
    /* Light yellow tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.pc-icon-box i {
    font-size: 1.75rem;
    color: #e6c200;
    /* Darker yellow for visibility against white */
    transition: all 0.3s ease;
}

.feature-card-premium:hover .pc-icon-box {
    background: var(--accent-neon);
    transform: scale(1.1) rotate(5deg);
}

.feature-card-premium:hover .pc-icon-box i {
    color: #000;
}

.pc-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.pc-text {
    color: #666666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Badge for "Who We Are" cards */
.pc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    color: #888;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- APP DOWNLOAD POPUP --- */
.app-download-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    width: 90%;
    max-width: 450px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: #333;
    /* Default text color for popup */
}

.app-download-popup h3,
.app-download-popup h5 {
    color: #1a1a1a;
    /* Force dark headings */
}

.app-download-popup .text-muted {
    color: #666 !important;
    /* Force legible muted text */
}

.app-download-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* --- RIDER / DRIVER TOGGLE SECTION (PREMIUM) --- */
.toggle-section {
    background-color: #fff;
    padding: 120px 0;
    position: relative;
}

.toggle-section h2 {
    color: #000 !important;
    font-weight: 800;
    letter-spacing: -1px;
}

.toggle-switch-container {
    display: inline-flex;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 100px;
    padding: 8px;
    position: relative;
    margin-bottom: 80px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.toggle-btn {
    padding: 12px 40px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 700;
    color: #666;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

.toggle-btn.active {
    background: #000;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.toggle-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.toggle-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Feature Showcase within Toggle */
.feature-point {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: #fff;
    border-color: #000;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.f-icon-circle {
    width: 50px;
    height: 50px;
    background: #000;
    color: var(--accent-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.f-title-small {
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.f-desc-small {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.premium-img-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.premium-img-wrap img {
    transition: transform 0.8s ease;
}

.toggle-content.active .premium-img-wrap img {
    transform: scale(1.05);
}

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
}

.popup-close-btn:hover {
    background: #eee;
    color: #000;
    transform: rotate(90deg);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.bg-neon-light {
    background: rgba(249, 214, 61, 0.2);
}

.bg-dark-subtle {
    background: #1a1a1a;
}

.btn-store {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-google {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #eee;
}

.btn-apple {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
}

.btn-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
    background: #e0e0e0;
    color: #000;
}

/* --- APP FEATURES SECTION (DARK) --- */
/* --- APP FEATURES SECTION (PREMIUM REDESIGN) --- */
.features-dark-section {
    background-color: #080808;
    /* Deeper dark */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Sophisticated background glow */
.features-dark-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background:
        radial-gradient(circle at 20% 30%, rgba(249, 214, 61, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(249, 214, 61, 0.03) 0%, transparent 40%);
    z-index: 0;
}

.section-head-premium {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.section-head-premium .display-4 {
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.text-gradient-neon {
    background: linear-gradient(135deg, #fff 0%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Segmented Control (Tabs) */
.ride-type-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ride-type-btn {
    padding: 10px 35px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.ride-type-btn.active {
    background: var(--accent-neon);
    color: #000 !important;
    box-shadow: 0 5px 15px rgba(249, 214, 61, 0.3);
}

.ride-type-btn:hover:not(.active) {
    color: #fff;
}

/* Premium Vehicle Cards */
.vehicle-grid-container {
    perspective: 1000px;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Dual-tone border simulation */
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.vehicle-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 1;
}

.vehicle-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    /* Reduced movement */
    border-color: rgba(249, 214, 61, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.vehicle-card.active {
    background: rgba(249, 214, 61, 0.03);
    border-color: var(--accent-neon);
    box-shadow: 0 0 30px rgba(249, 214, 61, 0.1);
}

.v-icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #fff;
    font-size: 1.75rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.vehicle-card:hover .v-icon-box,
.vehicle-card.active .v-icon-box {
    background: var(--accent-neon);
    color: #000;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 5px 15px rgba(249, 214, 61, 0.2);
    border-color: transparent;
}

.v-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    z-index: 2;
}

.v-desc {
    color: rgba(255, 255, 255, 0.6);
    /* Slightly lighter for cleanliness */
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    z-index: 2;
    max-width: 95%;
}

/* Dual Action Selection Group */
.v-action-group {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    z-index: 2;
}

.v-action-btn {
    flex: 1;
    padding: 8px 4px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.v-action-btn i {
    font-size: 0.9rem;
}

.v-action-btn.quick:hover {
    background: var(--accent-neon);
    color: #000;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(249, 214, 61, 0.3);
}

.v-action-btn.reserve:hover {
    background: #fff;
    color: #000;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.v-feature-badge {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(249, 214, 61, 0.1);
    border: 1px solid rgba(249, 214, 61, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent-neon);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.vehicle-card:hover .v-feature-badge {
    background: rgba(249, 214, 61, 0.2);
    border-color: var(--accent-neon);
}

/* --- AGREEMENT PAGES REFINEMENTS --- */
.ora-privacy-body {
    background: var(--bg-core);
    color: var(--text-main);
}

.ora-privacy-header-space {
    height: 0 !important;
    /* Managed by Hero section overlay */
}

.ora-privacy-main-wrapper {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
    max-width: 1320px;
    /* Matches Bootstrap XXL container */
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.ora-privacy-content-box {
    background: #ffffff !important;
    padding: 60px !important;
    border-radius: 32px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04) !important;
    position: relative;
    z-index: 10;
    margin-top: -80px;
    /* Overlap with hero slightly */
}

.ora-privacy-heading-primary {
    display: none;
    /* We use the hero title instead */
}

.ora-privacy-content-container {
    color: var(--text-body) !important;
    /* Standard text color */
    font-size: 1rem;
    /* Standard body size */
    line-height: 1.7 !important;
    /* Standard line height */
}

.ora-privacy-text {
    margin-bottom: 1rem;
    /* Standard paragraph spacing */
}

.ora-privacy-heading-secondary {
    color: #1a1a1a !important;
    font-family: var(--josefin);
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
    padding-bottom: 10px;
    border-bottom: 2px solid #f7fafc;
}

.ora-privacy-section-inner {
    margin-left: 0 !important;
}

.ora-privacy-list-item {
    margin-bottom: 15px !important;
    padding-left: 20px;
    position: relative;
}

.ora-privacy-list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-neon);
    font-weight: bold;
}

.ora-privacy-text-bold {
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

.ora-privacy-link {
    color: var(--accent-neon) !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.ora-privacy-link:hover {
    color: #000 !important;
    background: var(--accent-neon);
    padding: 0 4px;
    border-radius: 4px;
}

.ora-privacy-closing-text {
    margin-top: 50px !important;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid var(--accent-neon);
    font-style: normal !important;
    color: #2d3748;
}

/* Progress Bar Refinement */
.progress-container {
    height: 4px !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.progress-bar {
    background: var(--accent-neon) !important;
    box-shadow: 0 0 10px rgba(249, 214, 61, 0.5);
}

@media (max-width: 991px) {
    .ora-privacy-content-box {
        padding: 40px 25px !important;
        margin-top: -60px;
        border-radius: 24px !important;
    }

    .ora-privacy-heading-secondary {
        font-size: 1.25rem !important;
    }
}

/* --- EXECUTIVE HERO FIX --- */
.hero-executive {
    background-color: var(--bg-core) !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1), rgba(5, 5, 5, 1));
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* --- VIDEO SECTION --- */
.video-section {
    background: transparent;
    /* Allows main bg showing through */
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-morphism:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(249, 214, 61, 0.15);
    /* Neon accent glow */
    border-color: rgba(249, 214, 61, 0.3);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- REFINED VIDEO SECTION --- */
.video-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-bg-layer img {
    width: 100%;
    height: 120%;
    /* Taller for parallax movement */
    object-fit: cover;
    filter: brightness(0.6);
    /* Darkened but colored */
    transform: translateY(-10%);
    /* Center the parallax */
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.9));
    z-index: 2;
}

.video-card-premium {
    background: rgba(20, 20, 20, 0.6);
    /* Darker, more glass-like */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.video-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.video-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(249, 214, 61, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(249, 214, 61, 0.15);
    background: rgba(30, 30, 30, 0.7);
}

.video-card-premium:hover .video-wrapper {
    transform: scale(1.0);
}

.video-wrapper {
    transition: transform 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* --- ANIMATIONS --- */
@keyframes kenBurns {
    0% {
        transform: scale(1.0) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(-2%, -1%);
    }

    100% {
        transform: scale(1.0) translate(0, 0);
    }
}

.video-bg-layer img {
    /* Override previous styles for animation */
    height: 120%;
    width: 120%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
    transform-origin: center center;
    will-change: transform;
}

/* --- FILM GRAIN OVERLAY --- */
.video-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}/* --- LICENSE STRIP --- */
.license-strip-ultra {
    background: #000;
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

.license-text-ultra {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.license-badge-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.license-badge-img:hover {
    transform: scale(1.1);
}/* --- LICENSE POPUP --- */
.license-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    max-width: 90vw;
    max-height: 90vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.license-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.license-popup img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 4px;
}

.license-btn-trigger {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 15px;
    font-size: 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.license-btn-trigger:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}