/* -------------------------------------------------------------
   ПЕРВЫЙ ПАРК — ДИЗАЙН СИСТЕМА И СТИЛИ ЛЕНДИНГА
   Deep Obsidian & Neon Orange Premium Dark Mode
   ------------------------------------------------------------- */

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

:root {
    --color-bg-start: #0b0a09;
    --color-bg-end: #141312;
    --color-panel: #1c1a18;
    --color-text-primary: #faf9f6;
    --color-text-secondary: #9c968a;
    --color-accent: #ff9500;
    --color-accent-hover: #e08200;
    --color-border: rgba(255, 149, 0, 0.08);
    --color-border-hover: rgba(255, 149, 0, 0.25);
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(180deg, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
    color: var(--color-text-primary);
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Spacious Section Padding */
.hero-section,
.values-section,
.faq-section,
.cta-section,
.map-section {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .hero-section,
    .values-section,
    .faq-section,
    .cta-section,
    .map-section {
        padding: 80px 0;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
}

.btn-connect {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    background-color: var(--color-accent);
    color: #000000;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-connect:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-1px);
}

/* Floating Glassmorphism Navbar */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(28, 26, 24, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 16px 32px;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-info {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: #ffffff;
}

.accent-text {
    color: var(--color-accent);
}

.logo-subtext {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-top: 2px;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--color-accent);
}

@media (max-width: 576px) {
    .header {
        padding: 12px 20px;
        width: calc(100% - 32px);
        top: 10px;
    }
    .header-contacts .phone-link {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 200px !important;
}

.hero-glow {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.12) 0%, rgba(255, 149, 0, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    gap: 16px;
}

.btn-hero {
    background: var(--color-accent);
    color: #000000;
    font-weight: 700;
    border-radius: 12px;
    padding: 18px 36px;
    box-shadow: 0 0 25px rgba(255, 149, 0, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-hero:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 149, 0, 0.45);
}

.btn-hero:active {
    transform: translateY(0);
}

.hero-image-wrapper {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 992px) {
    .hero-section {
        padding-top: 160px !important;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-title {
        font-size: 56px;
        letter-spacing: -1.5px;
    }
    .action-buttons {
        justify-content: center;
    }
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .hero-glow {
        width: 300px;
        height: 300px;
        top: 20%;
        right: 20%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 140px !important;
    }
    .hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 28px;
    }
    .btn-hero {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
    }
    .action-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
}

/* Map Section */
.map-section {
    background: transparent;
    color: var(--color-text-primary);
}

.map-section .section-title {
    color: var(--color-text-primary);
}

.map-section .section-subtitle {
    color: var(--color-text-secondary);
}

.map-widget {
    display: grid;
    grid-template-columns: 340px 1fr;
    height: 520px;
    background: var(--color-panel);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.map-panel {
    background: rgba(28, 26, 24, 0.95);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--color-border);
    color: var(--color-text-primary);
}

.panel-brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.panel-brand span {
    color: var(--color-accent);
}

.route-info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.route-line {
    position: absolute;
    left: 4px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    border-left: 2px dashed rgba(255, 255, 255, 0.2);
}

.route-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.point-dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    background-color: var(--color-panel);
    z-index: 2;
}

.point-dot.end {
    border-color: var(--color-text-primary);
}

.class-selector-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.car-classes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: auto;
}

.car-class-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.car-class-card:hover {
    border-color: var(--color-border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.car-class-card.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #000000;
}

.car-class-info {
    display: flex;
    flex-direction: column;
}

.class-name {
    font-size: 14px;
    font-weight: 700;
}

.class-rate {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
    margin-top: 2px;
}

.panel-btn-link {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    background: var(--color-accent);
    color: #000000;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.panel-btn-link:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
}

.map-canvas {
    position: relative;
    flex: 1;
    background: #0f0e0d;
    overflow: hidden;
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1.5px, transparent 0);
    background-size: 24px 24px;
}

.map-status-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 12px 20px;
    background: rgba(20, 19, 18, 0.85);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    color: var(--color-text-primary);
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.map-status-overlay span {
    color: var(--color-accent);
    font-weight: 700;
}

.map-roads-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.road-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 2.5;
}

.road-line.active-path {
    stroke: var(--color-accent);
    stroke-width: 3.5;
    stroke-dasharray: 6 4;
    animation: dash 35s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

.pulsing-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.pulsing-dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.moving-taxi {
    position: absolute;
    background: var(--color-accent);
    color: #000000;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 10px rgba(255, 149, 0, 0.3);
    z-index: 4;
    transition: top 0.4s ease, left 0.4s ease;
}

@media (max-width: 768px) {
    .map-section {
        padding: 80px 0;
    }
    .map-widget {
        grid-template-columns: 1fr;
        height: auto;
    }
    .map-panel {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    .map-canvas {
        height: 380px;
    }
}

/* Section Typography & Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 32px;
    }
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 36px;
    }
}

/* Pains & Solutions Section */
.pains-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pain-card {
    background: var(--color-panel);
    border: 1px solid var(--color-border);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.pain-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 149, 0, 0.04);
}

.pain-block {
    padding: 36px 40px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    flex: 1;
}

.solution-block {
    padding: 36px 40px;
    background: rgba(255, 149, 0, 0.02);
    flex: 1;
}

.pain-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(230, 57, 70, 0.1);
    color: #ff4d4d;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.solution-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 149, 0, 0.1);
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.pain-block h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: #e5e2da;
    margin-bottom: 12px;
}

.solution-block h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.pain-block p {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.solution-block p {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-primary);
}

@media (max-width: 992px) {
    .pains-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .pain-block, .solution-block {
        padding: 30px 24px;
    }
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: color 0.3s;
}

.faq-trigger:hover {
    color: var(--color-accent);
}

.faq-icon {
    position: relative;
    font-size: 0;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-text-secondary);
    border-bottom: 2px solid var(--color-text-secondary);
    transform: rotate(45deg);
    transition: border-color 0.3s;
}

.faq-item.active .faq-trigger {
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon::before {
    border-color: var(--color-accent);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 0 0 24px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

@media (max-width: 576px) {
    .faq-trigger {
        font-size: 16px;
        padding: 20px 0;
    }
    .faq-content {
        font-size: 14px;
    }
}

/* Final CTA Section & Form */
.cta-section {
    background: var(--color-panel);
    border: 1px solid var(--color-border);
    border-radius: 32px;
    padding: 60px;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-info {
    max-width: 500px;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-desc {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.cta-card {
    background-color: var(--color-bg-start);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.form-group input::placeholder {
    color: var(--color-text-secondary);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.15);
}

.btn-submit {
    background: var(--color-accent);
    color: #000000;
    font-weight: 700;
    border-radius: 12px;
    padding: 18px 36px;
    box-shadow: 0 0 25px rgba(255, 149, 0, 0.25);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 149, 0, 0.45);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-terms {
    font-size: 12px;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: 16px;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .cta-info {
        max-width: 600px;
        margin: 0 auto;
    }
    .cta-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
        padding: 32px;
    }
}

/* Footer */
.footer {
    background-color: var(--color-bg-start);
    padding: 40px 0;
    font-size: 14px;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    color: var(--color-text-secondary);
}

.footer-legal {
    font-size: 12px;
    opacity: 0.8;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-accent);
    color: #000000;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 576px) {
    .toast {
        right: 20px;
        left: 20px;
        bottom: 20px;
        text-align: center;
    }
}

/* Scroll Reveal Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------
   MOSCOW MAP HERO SECTION ANIMATIONS (R1, R2, R3)
   ------------------------------------------------------------- */

/* Container & Background Setup */
.hero-bg-map-container {
    position: relative;
}

.hero-bg-map-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}

.hero-bg-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.90;
    filter: contrast(1.4) brightness(0.85) saturate(1.2);
    will-change: transform;
}

/* Route Dash Animations */
.animate-route-comfort {
    animation: mapDashComfort 25s linear infinite;
    will-change: stroke-dashoffset;
}

.animate-route-econom {
    animation: mapDashEconom 35s linear infinite;
    will-change: stroke-dashoffset;
}

.animate-route-business {
    animation: mapDashBusiness 30s linear infinite;
    will-change: stroke-dashoffset;
}

@keyframes mapDashComfort {
    to {
        stroke-dashoffset: -1000;
    }
}

@keyframes mapDashEconom {
    to {
        stroke-dashoffset: 1000;
    }
}

@keyframes mapDashBusiness {
    to {
        stroke-dashoffset: -1000;
    }
}

/* Pulsating Dots Animation */
.map-pulse-ring {
    transform-origin: 0px 0px;
    animation: mapPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    will-change: transform, opacity;
}

@keyframes mapPulse {
    0% {
        transform: scale(0.4);
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Moving Taxi Cars with offset-path (GPU-Accelerated) */
.moving-taxi-car {
    will-change: transform, offset-distance;
}

.taxi-comfort {
    offset-path: path('M 250,180 C 400,280 500,150 780,380');
    offset-rotate: auto;
    animation: travelComfort 12s linear infinite;
}

.taxi-econom {
    offset-path: path('M 120,400 C 300,320 500,480 880,280');
    offset-rotate: auto;
    animation: travelEconom 18s linear infinite;
}

.taxi-business {
    offset-path: path('M 400,100 C 600,60 700,250 950,150');
    offset-rotate: auto;
    animation: travelBusiness 15s linear infinite;
}

@keyframes travelComfort {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}

@keyframes travelEconom {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}

@keyframes travelBusiness {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}
