/* Taxi Sharing - Premium Single Page Landing Stylesheet */

/* --- Fonts & Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Plus Jakarta Sans', sans-serif;

    /* Light Theme Colors (Default) */
    --bg-primary: #F8F9FA;
    --bg-secondary: #FFFFFF;
    --text-primary: #121214;
    --text-secondary: #64748B;
    --accent-yellow: #FFC107;
    --accent-yellow-dark: #E0A800;
    --accent-yellow-light: #FFECB3;
    --accent-yellow-rgb: 255, 193, 7;
    --card-bg: #FFFFFF;
    --card-border: rgba(0, 0, 0, 0.06);
    --nav-bg: rgba(248, 249, 250, 0.8);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --badge-bg: rgba(255, 193, 7, 0.15);
    --badge-text: #B27B00;
}

/* Dark Theme overrides */
[data-theme="dark"] {
    --bg-primary: #0C0C0E;
    --bg-secondary: #121215;
    --text-primary: #F4F4F5;
    --text-secondary: #CBD5E1;
    --accent-yellow: #FFC107;
    --accent-yellow-dark: #FFD54F;
    --accent-yellow-light: #332B12;
    --card-bg: #16161A;
    --card-border: rgba(255, 255, 255, 0.08);
    --nav-bg: rgba(12, 12, 14, 0.8);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
    --badge-bg: rgba(255, 193, 7, 0.1);
    --badge-text: #FFD54F;
}

/* --- Base Styles --- */
body {
    font-family: var(--font-secondary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* --- Utilities --- */
.text-gradient-yellow {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FF8F00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-yellow {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FF8F00 100%);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #1C1C21 0%, #0E0E10 100%);
}

.text-muted-custom {
    color: var(--text-secondary);
}

.badge-custom {
    background-color: var(--badge-bg);
    color: var(--badge-text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Header & Navigation --- */
.navbar-custom {
    background-color: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

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

.navbar-brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    padding: 0;
    background-color: transparent !important;
    border-radius: 0;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-1px);
    box-shadow: none !important;
}

.navbar-brand i {
    color: #121214 !important;
}

.nav-link-custom {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    opacity: 0.85;
}

.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--accent-yellow) !important;
    opacity: 1;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--accent-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link-custom:hover::after, .nav-link-custom.active::after {
    transform: scaleX(1);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    background-color: var(--card-border);
    color: var(--accent-yellow);
}

/* --- Buttons --- */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FF8F00 100%);
    color: #121214 !important;
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--text-primary) !important;
    font-weight: 600;
    border: 2px solid var(--card-border);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: var(--card-border);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #121214;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: #000000;
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-download {
    background-color: #1F1F23;
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .btn-download:hover {
    background-color: #27272C;
    border-color: var(--accent-yellow);
}

.btn-download i {
    font-size: 1.6rem;
}

.btn-download .btn-subtext {
    font-size: 0.7rem;
    text-transform: uppercase;
    display: block;
    opacity: 0.7;
    margin-bottom: -2px;
}

.btn-download .btn-maintext {
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
}

/* --- Hero Banner --- */
.hero-section {
    padding: 10rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, rgba(255, 193, 7, 0) 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
    pointer-events: none;
}

/* Hero Ride Search Widget */
.hero-search-widget {
    background-color: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

/* --- Section Formatting --- */
.section-padding {
    padding: 6rem 0;
}

.section-title-area {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

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

.section-title-left::after {
    left: 0;
    transform: none;
}

/* --- Custom Cards --- */
.custom-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 193, 7, 0.3);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 193, 7, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.custom-card:hover .card-icon-wrapper {
    background-color: var(--accent-yellow);
}

.card-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--accent-yellow);
    transition: all 0.3s ease;
}

.custom-card:hover .card-icon-wrapper i {
    color: #121214;
    transform: scale(1.1);
}

/* --- How It Works --- */
#how-it-works .custom-card {
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.22);
    border-color: rgba(255, 193, 7, 0.35);
}

#how-it-works .custom-card:hover {
    box-shadow: 0 20px 45px rgba(255, 193, 7, 0.35);
    border-color: var(--accent-yellow);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--card-border);
    line-height: 1;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.custom-card:hover .step-number {
    color: rgba(255, 193, 7, 0.2);
}

/* --- Why Choose Us --- */
/* (Reuses custom-card styles with standard icons) */

/* --- Popular Routes --- */
.route-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.22);
    transition: all 0.3s ease;
}

.route-card:hover {
    border-color: var(--accent-yellow);
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.22);
}

.route-connector {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    gap: 4px;
}

.route-line {
    width: 40px;
    height: 2px;
    border-top: 2px dashed var(--text-secondary);
    opacity: 0.5;
}

.route-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
}

.route-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.route-cities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.route-city {
    font-weight: 600;
    font-size: 1.1rem;
}

.route-info-pill {
    font-size: 0.8rem;
    font-weight: 500;
    background-color: var(--bg-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    color: var(--text-secondary);
}

/* --- App Screenshots Placeholder Section --- */
.app-screenshots-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.screenshot-tab-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.btn-screenshot-tab {
    background-color: var(--bg-secondary);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.22);
}

.btn-screenshot-tab.active, .btn-screenshot-tab:hover {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: #121214;
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.4);
}

/* Premium Screenshot Placeholder Device */
.device-mockup-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    background-color: #121214;
    border: 12px solid #27272A;
    border-radius: 40px;
    box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255, 193, 7, 0.2);
    aspect-ratio: 9 / 19.5;
    overflow: hidden;
    transition: border-color 0.4s ease;
}

[data-theme="dark"] .device-mockup-wrapper {
    border-color: #1F1F23;
}

.device-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 25px;
    background-color: #27272A;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

[data-theme="dark"] .device-notch {
    background-color: #1F1F23;
}

.device-screen-container {
    width: 100%;
    position: relative;
    background: transparent;
}

.screenshot-img-placeholder {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    color: #FFFFFF;
}

.screenshot-placeholder-icon {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
    animation: pulseIcon 2s infinite ease-in-out;
}

.screenshot-placeholder-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.screenshot-placeholder-desc {
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.4;
}

/* Simulated UI inside placeholder to look incredibly premium */
.simulated-phone-ui {
    width: 100%;
    margin-top: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    text-align: left;
}

.sim-ui-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.sim-ui-bar.short {
    width: 60%;
}

.sim-ui-btn {
    height: 24px;
    background-color: var(--accent-yellow);
    border-radius: 6px;
    margin-top: 0.75rem;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}

/* --- Become a Driver --- */
.driver-promo-banner {
    background: linear-gradient(135deg, #1C1C21 0%, #0C0C0E 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 24px;
    padding: 4rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.driver-promo-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, rgba(255, 193, 7, 0) 75%);
    bottom: -150px;
    right: -100px;
    z-index: 0;
    pointer-events: none;
}

.driver-step-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--accent-yellow);
    color: #121214;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* --- FAQ Accordion --- */
.accordion-custom .accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.accordion-custom .accordion-item:hover {
    border-color: rgba(255, 193, 7, 0.3);
}

.accordion-custom .accordion-button {
    background-color: var(--card-bg);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--accent-yellow);
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--card-border);
}

.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFC107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Footer --- */
.footer-section {
    background-color: #121214;
    color: #94A3B8;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section h5 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.95rem;
}

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

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: var(--accent-yellow);
    color: #121214;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* --- Driver Sign-up Modal --- */
.modal-content-custom {
    background-color: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
}

.modal-header-custom {
    border-bottom: 1px solid var(--card-border);
    padding: 1.5rem;
}

.modal-body-custom {
    padding: 2rem;
}

.form-control-custom {
    background-color: var(--bg-primary);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background-color: var(--bg-secondary);
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
    color: var(--text-primary);
    outline: none;
}

/* --- Interactive Search Result Box (Hero Banner Demo) --- */
.mock-ride-result {
    margin-top: 1rem;
    background-color: rgba(255, 193, 7, 0.08);
    border: 1px dashed var(--accent-yellow);
    border-radius: 10px;
    padding: 1rem;
    animation: fadeInUp 0.4s ease-out;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

/* --- Hero Car Animation & Backdrop --- */
.hero-car-glow-behind {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.18) 0%, rgba(255, 193, 7, 0.05) 40%, rgba(255, 193, 7, 0) 70%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

[data-theme="dark"] .hero-car-glow-behind {
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.04) 40%, rgba(255, 193, 7, 0) 70%);
    opacity: 0.9;
}

.hero-car-img {
    position: relative;
    z-index: 1;
    width: 125%;
    max-width: 700px;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    mix-blend-mode: normal;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.12));
    /* animation: floatCar 5s ease-in-out infinite alternate; */
}

@keyframes floatCar {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-0.5deg);
    }
    100% {
        transform: translateY(6px) rotate(0.5deg);
    }
}

/* --- Mobile Responsive Enhancements --- */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 7rem 0 3rem 0;
        text-align: center;
    }

    .hero-car-img {
        width: 100% !important;
        max-width: 420px !important;
        max-height: 320px !important;
        margin: 1.5rem auto 0 auto;
    }

    .hero-car-glow-behind {
        width: 300px;
        height: 300px;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .section-title-area {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .driver-promo-banner {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
        text-align: center;
    }

    .driver-promo-banner h2 {
        font-size: 1.8rem;
    }

    .device-mockup-wrapper {
        max-width: 280px;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }

    .screenshot-tab-btns {
        gap: 0.5rem;
    }

    .btn-screenshot-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* --- Hero Image Slider --- */
.hero-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}

.hero-slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300%;
}

.hero-slider-wrapper .hero-car-slide {
    width: 33.333%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider-wrapper .hero-car-slide .hero-car-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* --- Download Button Images --- */
.btn-download-img {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-download-img:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* --- Driver Action Card --- */
.driver-action-card {
    background-color: #FFC107;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* --- Hero Slider Dots --- */
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.hero-slider-dots .hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme="dark"] .hero-slider-dots .hero-dot {
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-slider-dots .hero-dot.active {
    background-color: #FFC107; /* Taxi Theme Yellow color */
    width: 24px; /* Pill layout matching the dynamic onboarding mockup style */
    border-radius: 4px;
}

/* --- Mockup Slider Dots --- */
.mockup-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
}

.mockup-slider-dots .mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme="dark"] .mockup-slider-dots .mockup-dot {
    background-color: rgba(255, 255, 255, 0.3);
}

.mockup-slider-dots .mockup-dot.active {
    background-color: #FFC107; /* Taxi Theme Yellow color */
    width: 24px;
    border-radius: 4px;
}

/* --- Booking Slider Dots --- */
.booking-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
}

.booking-slider-dots .booking-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme="dark"] .booking-slider-dots .booking-dot {
    background-color: rgba(255, 255, 255, 0.3);
}

.booking-slider-dots .booking-dot.active {
    background-color: #FFC107; /* Taxi Theme Yellow color */
    width: 24px;
    border-radius: 4px;
}

/* --- Driver Slider Dots --- */
.driver-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
}

.driver-slider-dots .driver-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme="dark"] .driver-slider-dots .driver-dot {
    background-color: rgba(255, 255, 255, 0.3);
}

.driver-slider-dots .driver-dot.active {
    background-color: #FFC107; /* Taxi Theme Yellow color */
    width: 24px;
    border-radius: 4px;
}

/* --- Slider Navigation Arrows --- */

/* Hero Slider Navigation Buttons */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #121214;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    padding: 0;
}

.hero-nav-btn:hover {
    background: var(--accent-yellow);
    color: #121214;
    border-color: var(--accent-yellow);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.45);
    transform: translateY(-50%) scale(1.08);
}

.hero-nav-btn.prev-btn {
    left: 10px;
}

.hero-nav-btn.next-btn {
    right: 10px;
}

[data-theme="dark"] .hero-nav-btn {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .hero-nav-btn:hover {
    background: var(--accent-yellow);
    color: #121214;
    border-color: var(--accent-yellow);
}

/* Mockup Slider Outer Wrapper */
.device-slider-outer-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mockup Slider Navigation Buttons */
.mockup-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    box-shadow: var(--shadow-md);
    padding: 0;
}

.mockup-nav-btn:hover {
    background: var(--accent-yellow);
    color: #121214;
    border-color: var(--accent-yellow);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.mockup-nav-btn.prev-btn {
    left: -20px;
}

.mockup-nav-btn.next-btn {
    right: -20px;
}

@media (max-width: 768px) {
    .hero-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .mockup-nav-btn.prev-btn {
        left: -10px;
    }
    .mockup-nav-btn.next-btn {
        right: -10px;
    }
}










