*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #fffdf6;
    --surface: #ffffff;
    --surface-soft: #fff8d7;
    --text: #111111;
    --muted: #5a5a5a;
    --stroke: rgba(234, 179, 8, 0.3);
    --radius: 18px;
    --shadow: 0 15px 34px rgba(17, 17, 17, 0.08);
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 14% 3%, rgba(250, 204, 21, 0.22), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(250, 204, 21, 0.14), transparent 24%),
        linear-gradient(180deg, #fffef9 0%, #fffdf5 58%, #fffbea 100%);
}

body.rtl {
    direction: rtl;
    font-family: "Cairo", "Tahoma", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1220px, calc(100% - 2rem));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 3500;
    isolation: isolate;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(234, 179, 8, 0.35);
}

.top-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    padding: 0.82rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
}

.brand-name {
    line-height: 1.1;
    white-space: nowrap;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #111111;
    background: linear-gradient(145deg, #fde047, var(--primary));
    box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.2);
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
    border-radius: 8px;
}

.header-actions {
    margin-inline-start: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn {
    border: none;
    border-radius: 12px;
    padding: 0.63rem 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.btn-primary {
    background: linear-gradient(145deg, #fde047, var(--primary));
    color: #111111;
}

.btn-soft {
    background: #fff;
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.2);
}

.lang-menu {
    position: relative;
}

.lang-menu summary {
    list-style: none;
    cursor: pointer;
    width: 42px;
    height: 30px;
    border: 1px solid rgba(17, 17, 17, 0.22);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-menu summary::-webkit-details-marker {
    display: none;
}

.lang-menu[open] summary {
    border-color: rgba(217, 119, 6, 0.5);
}

.lang-list {
    position: absolute;
    right: 0;
    top: calc(100% + 5px);
    display: grid;
    gap: 0.25rem;
    padding: 0.28rem;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    z-index: 60;
}

.lang-item {
    width: 34px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.lang-item.active {
    border-color: rgba(217, 119, 6, 0.5);
    background: #fff8e0;
}

.flag-img {
    width: 24px;
    height: 16px;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

.menu {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.36rem 0.38rem;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #3a3a3a;
    min-height: 34px;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0.4rem;
    right: 0.4rem;
    bottom: 0.18rem;
    height: 2px;
    background: #d97706;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.menu a.active::after {
    transform: scaleX(1);
}

.menu a.active {
    color: #111;
    background: rgba(250, 204, 21, 0.22);
}

@media (hover: hover) and (pointer: fine) {
    .menu a:hover {
        transform: translateY(-1px);
        color: #111;
    }

    .menu a:not(.active):hover {
        background: rgba(250, 204, 21, 0.1);
    }

    .menu a:not(.active):hover::after {
        transform: scaleX(0.62);
    }
}

.menu-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    color: #b45309;
}

.menu-icon svg {
    width: 100%;
    height: 100%;
}

.hero-section {
    padding: 1.55rem 0 1.2rem;
}

.hero-grid {
    display: grid;
    gap: 1rem;
}

.hero-slider,
.hero-contact {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--stroke);
    background: #fff;
}

.hero-slider {
    position: relative;
}

.hero-badge {
    position: absolute;
    z-index: 2;
    top: 1rem;
    left: 1rem;
    background: rgba(17, 17, 17, 0.84);
    color: #fef08a;
    border: 1px solid rgba(250, 204, 21, 0.46);
    border-radius: 999px;
    padding: 0.35rem 0.74rem;
    font-size: 0.82rem;
}

.slides {
    position: relative;
    min-height: 330px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.42s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide .overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.05rem;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
}

.slide h1 {
    margin: 0;
    font-size: 1.45rem;
}

.slide p {
    margin: 0.38rem 0 0;
    color: rgba(255, 255, 255, 0.92);
}

.hero-contact {
    padding: 1.2rem;
    background: linear-gradient(180deg, #fffef8, #fffbe9);
}

.hero-contact h2 {
    margin-top: 0;
}

.hero-contact p {
    color: var(--muted);
}

.hero-contact ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.hero-location-row {
    margin-top: 0.18rem;
}

.hero-location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.38rem 0.64rem;
    border-radius: 999px;
    border: 1px solid rgba(217, 119, 6, 0.35);
    background: linear-gradient(145deg, #fff8dd, #ffefbf);
    color: #8a4b00;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-location-link:hover {
    border-color: rgba(217, 119, 6, 0.58);
    background: linear-gradient(145deg, #ffe89f, #ffd76a);
}

.hero-location-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
}

.hero-location-icon svg {
    width: 100%;
    height: 100%;
}

.hero-station-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.2rem 0 0.9rem;
}

.hero-station-pill {
    border: 1px solid rgba(17, 17, 17, 0.16);
    background: #fff;
    color: #4b5563;
    border-radius: 999px;
    padding: 0.34rem 0.68rem;
    font: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-station-pill:hover {
    transform: translateY(-1px);
}

.hero-station-pill.active {
    border-color: rgba(217, 119, 6, 0.42);
    background: rgba(250, 204, 21, 0.22);
    color: #111;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.section {
    padding: 2rem 0;
    scroll-margin-top: var(--header-offset, 108px);
}

.surface {
    background: rgba(255, 251, 229, 0.42);
    border-top: 1px solid rgba(234, 179, 8, 0.18);
    border-bottom: 1px solid rgba(234, 179, 8, 0.18);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-head h2 {
    margin: 0;
    font-size: 1.5rem;
}

.vehicle-grid,
.station-grid,
.driver-grid,
.price-grid {
    display: grid;
    gap: 1rem;
}

.vehicle-card,
.station-card,
.driver-card,
.price-card {
    background: #fff;
    border: 1px solid rgba(234, 179, 8, 0.28);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.vehicle-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.station-card {
    padding: 0;
}

.station-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid rgba(234, 179, 8, 0.3);
}

.station-content {
    padding: 0.95rem 1rem 1rem;
    background: linear-gradient(180deg, #fffef8 0%, #fff8dc 100%);
}

.vehicle-content {
    padding: 1rem;
}

.vehicle-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.plate-real {
    display: inline-grid;
    grid-template-columns: 22px auto;
    align-items: stretch;
    min-height: 22px;
    border: 1.5px solid #000;
    background: #fff;
    width: fit-content;
}

.plate-country {
    background: #0a3ca3;
    color: #fff;
    display: grid;
    align-content: space-between;
    justify-items: center;
    justify-content: center;
    padding-block: 1px;
    border-right: 1px solid #fff;
}

.tr-mini-flag {
    width: 10px;
    height: 7px;
    display: block;
    background: #e30a17 url("../img/flags/tr.svg") center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.plate-country-code {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.plate-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0 0.22rem;
    font-family: "DIN 1451 Mittelschrift", "Bahnschrift", "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #000;
    font-size: 0.76rem;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.28rem;
    color: #666;
    font-size: 0.82rem;
}

.rating-badge strong {
    color: #7a5600;
    margin-inline-start: 0.2rem;
}

.rating-badge .on {
    color: #eab308;
}

.rating-badge .half {
    color: rgba(234, 179, 8, 0.56);
}

.rating-badge .off {
    color: #fff;
    text-shadow: 0 0 1px rgba(122, 86, 0, 0.85);
}

.rating-inline-form {
    margin: 0;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.rating-badge.interactive {
    position: relative;
    z-index: 3;
}

.rating-badge.interactive .star-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0.04rem 0.08rem;
    color: #fff;
    text-shadow: 0 0 1px rgba(122, 86, 0, 0.85);
    font-size: 1.02rem;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.14s ease, transform 0.12s ease, filter 0.14s ease;
}

.rating-badge.interactive .star-btn.on {
    color: #eab308;
    text-shadow: none;
}

.rating-badge.interactive .star-btn.off {
    color: #fff;
    text-shadow: 0 0 1px rgba(122, 86, 0, 0.85);
}

.rating-badge.interactive .star-btn:hover,
.rating-badge.interactive .star-btn:focus-visible {
    color: #eab308;
    text-shadow: none;
    transform: translateY(-1px);
    filter: saturate(1.05);
    outline: none;
}

.rating-badge.interactive .star-btn:active {
    transform: scale(0.9);
}

.rating-badge.interactive .star-btn.just-rated {
    animation: star-blink 0.36s ease;
}

@keyframes star-blink {
    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.18);
        filter: brightness(1.24);
    }
}

.vehicle-content h3 {
    margin: 0 0 0.3rem;
    font-size: 1.15rem;
}

.vehicle-content p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.42;
}

.feature-list {
    list-style: none;
    margin: 0.9rem 0 0;
    padding: 0;
    display: grid;
    grid-template-rows: repeat(3, minmax(0, auto));
    grid-auto-flow: column;
    gap: 0.48rem 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.52rem;
    color: #262626;
    font-size: 0.88rem;
}

.feature-list li.feature-off {
    opacity: 0.48;
}

.feature-icon {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--icon-bg, rgba(250, 204, 21, 0.2));
    border: 1px solid var(--icon-br, rgba(234, 179, 8, 0.46));
    color: var(--icon-fg, #8a6200);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 15px;
    height: 15px;
}

.feature-list li:nth-child(1) .feature-icon {
    --icon-bg: rgba(251, 191, 36, 0.2);
    --icon-br: rgba(217, 119, 6, 0.45);
    --icon-fg: #9a5a00;
}

.feature-list li:nth-child(2) .feature-icon {
    --icon-bg: rgba(59, 130, 246, 0.18);
    --icon-br: rgba(29, 78, 216, 0.4);
    --icon-fg: #1e40af;
}

.feature-list li:nth-child(3) .feature-icon {
    --icon-bg: rgba(20, 184, 166, 0.2);
    --icon-br: rgba(13, 148, 136, 0.42);
    --icon-fg: #0f766e;
}

.feature-list li:nth-child(4) .feature-icon {
    --icon-bg: rgba(34, 197, 94, 0.18);
    --icon-br: rgba(21, 128, 61, 0.42);
    --icon-fg: #166534;
}

.feature-list li:nth-child(5) .feature-icon {
    --icon-bg: rgba(168, 85, 247, 0.18);
    --icon-br: rgba(126, 34, 206, 0.4);
    --icon-fg: #6b21a8;
}

.feature-list li:nth-child(6) .feature-icon {
    --icon-bg: rgba(244, 63, 94, 0.16);
    --icon-br: rgba(190, 24, 93, 0.4);
    --icon-fg: #9d174d;
}

.vehicle-content small {
    display: inline-block;
    margin-top: 0.82rem;
    color: #7b5600;
}

.driver-card,
.price-card {
    padding: 1rem;
}

.station-card h3,
.driver-card h3,
.price-card h3 {
    margin: 0 0 0.4rem;
}

.station-card p,
.driver-card p,
.price-card p {
    margin: 0;
    color: var(--muted);
}

.driver-row {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 0.72rem;
}

.driver-thumb {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 10px;
    background: #fff;
}

.driver-info h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.driver-info p {
    margin: 0;
    font-size: 0.84rem;
    color: #6e4b00;
}

.plate-real.plate-mini {
    margin-top: 0.35rem;
    min-height: 20px;
    border-width: 1.5px;
    grid-template-columns: 15px auto;
}

.plate-real.plate-mini .plate-country {
    padding-block: 1px 2px;
}

.plate-real.plate-mini .tr-mini-flag {
    width: 8px;
    height: 5px;
}

.plate-real.plate-mini .plate-country-code {
    font-size: 5px;
}

.plate-real.plate-mini .plate-value {
    min-width: 0;
    font-size: 0.52rem;
    letter-spacing: 0.03em;
    padding: 0 0.14rem;
}

.station-card ul {
    margin: 0.8rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.block-shell {
    border-radius: 26px;
    padding: 1.1rem;
    border: 1px solid rgba(234, 179, 8, 0.24);
    box-shadow: var(--shadow);
}

.section-reservation .reservation-shell {
    background:
        linear-gradient(120deg, rgba(255, 246, 204, 0.7), rgba(255, 255, 255, 0.95)),
        repeating-linear-gradient(
            -45deg,
            rgba(234, 179, 8, 0.08) 0px,
            rgba(234, 179, 8, 0.08) 8px,
            transparent 8px,
            transparent 22px
        );
}

.section-reservation .section-head h2,
.section-reservation .field label {
    color: #7a5500;
}

.section-reservation .field input,
.section-reservation .field select,
.section-reservation .field textarea {
    border-color: rgba(191, 127, 0, 0.24);
    background: #fffef7;
    color: #604500;
}

.reservation-form {
    row-gap: 1rem;
    column-gap: 0.85rem;
}

.route-wrap {
    display: grid;
    gap: 1.25rem;
}

.route-card {
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 18px;
    padding: 0.9rem;
}

.route-pickup {
    background:
        radial-gradient(circle at 12% 8%, rgba(14, 165, 233, 0.18), transparent 38%),
        linear-gradient(180deg, #f0f9ff, #eaf6ff);
    border-color: rgba(14, 165, 233, 0.24);
}

.route-dropoff {
    background:
        radial-gradient(circle at 90% 10%, rgba(34, 197, 94, 0.2), transparent 42%),
        linear-gradient(180deg, #f0fdf4, #dcfce7);
    border-color: rgba(22, 163, 74, 0.24);
}

.route-pickup .field label {
    color: #0f4c5c;
}

.route-pickup .field input,
.route-pickup .field select {
    border-color: rgba(14, 116, 144, 0.28);
    background: rgba(240, 249, 255, 0.9);
    color: #0f172a;
}

.route-dropoff .field label {
    color: #166534;
}

.route-dropoff .field input,
.route-dropoff .field select {
    border-color: rgba(22, 163, 74, 0.28);
    background: rgba(240, 253, 244, 0.92);
    color: #14532d;
}

.route-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
}

.route-title strong {
    display: block;
    font-size: 0.96rem;
    color: #1f2937;
    white-space: nowrap;
}

.route-title small {
    color: #475569;
    font-size: 0.8rem;
}

.route-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 17, 17, 0.14);
    color: #0f172a;
    flex-shrink: 0;
}

.route-icon svg {
    width: 18px;
    height: 18px;
}

.route-pickup .route-icon {
    border-color: rgba(14, 116, 144, 0.35);
    color: #0f4c5c;
}

.route-dropoff .route-icon {
    border-color: rgba(22, 163, 74, 0.35);
    color: #15803d;
}

.route-grid {
    display: grid;
    gap: 0.68rem;
}

.route-map-shell {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    padding: 0.85rem;
    border: 1px solid rgba(30, 41, 59, 0.2);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    margin-top: 0.62rem;
}

.route-map-shell-pickup {
    border-color: rgba(14, 116, 144, 0.32);
    background:
        radial-gradient(circle at 88% 18%, rgba(14, 165, 233, 0.2), transparent 44%),
        linear-gradient(180deg, #f0f9ff, #ecfeff);
}

.route-map-shell-dropoff {
    border-color: rgba(22, 163, 74, 0.32);
    background:
        radial-gradient(circle at 86% 16%, rgba(34, 197, 94, 0.22), transparent 44%),
        linear-gradient(180deg, #f0fdf4, #dcfce7);
}

.route-map-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.62rem;
    row-gap: 0.45rem;
    margin-bottom: 0.62rem;
}

.route-map-top span {
    display: block;
    min-width: 0;
    line-height: 1.22;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f2937;
}

.route-map-shell-pickup .route-map-top span {
    color: #0f4c5c;
}

.route-map-shell-dropoff .route-map-top span {
    color: #166534;
}

.route-map-top .btn {
    min-height: 34px;
    padding: 0.42rem 0.68rem;
    border-radius: 10px;
    font-size: 0.78rem;
    line-height: 1;
    white-space: nowrap;
    justify-self: end;
    border-width: 1px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.route-map-shell-pickup .btn-soft {
    border-color: #d97706;
    background: linear-gradient(135deg, #fde047, #f59e0b);
    color: #1f2937;
}

.route-map-shell-dropoff .btn-soft {
    border-color: #15803d;
    background: linear-gradient(135deg, #86efac, #22c55e);
    color: #14532d;
}

.route-map-shell-pickup .btn-soft:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.32);
    filter: saturate(1.08);
}

.route-map-shell-dropoff .btn-soft:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
    filter: saturate(1.08);
}

.route-map-shell-pickup .btn-soft:focus-visible,
.route-map-shell-dropoff .btn-soft:focus-visible {
    outline: 2px solid rgba(17, 24, 39, 0.35);
    outline-offset: 2px;
}

.route-map-shell > label {
    font-weight: 700;
    color: #334155;
}

.route-map-canvas {
    position: relative;
    z-index: 1;
    width: 100%;
    height: clamp(180px, 32vh, 236px);
    border: 1px solid rgba(30, 41, 59, 0.2);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.route-map-canvas .leaflet-pane {
    z-index: 140 !important;
}

.route-map-canvas .leaflet-top,
.route-map-canvas .leaflet-bottom {
    z-index: 180 !important;
}

.route-map-canvas .leaflet-control {
    z-index: 180 !important;
}

.route-map-status {
    margin: 0.58rem 0 0;
    font-size: 0.84rem;
    color: #334155;
}

.route-map-shell-pickup .route-map-status {
    color: #0c4a6e;
}

.route-map-shell-dropoff .route-map-status {
    color: #166534;
}

.route-points {
    margin-top: 0.68rem;
    display: grid;
    gap: 0.55rem;
}

.route-point {
    border: 1px dashed rgba(30, 41, 59, 0.26);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 0.5rem 0.64rem;
    display: grid;
    gap: 0.22rem;
}

.route-map-shell-pickup .route-point {
    border-color: rgba(14, 116, 144, 0.36);
    background: rgba(240, 249, 255, 0.75);
}

.route-map-shell-dropoff .route-point {
    border-color: rgba(22, 163, 74, 0.35);
    background: rgba(240, 253, 244, 0.8);
}

.route-point strong {
    font-size: 0.8rem;
    color: #334155;
    white-space: nowrap;
}

.route-point span {
    font-family: "JetBrains Mono", "Consolas", monospace;
    font-size: 0.78rem;
    color: #0f172a;
}

.route-point a {
    font-size: 0.78rem;
    color: #0c4a6e;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.route-map-shell-dropoff .route-point a {
    color: #166534;
}

.section-prices .prices-shell {
    background:
        radial-gradient(circle at 10% 0%, rgba(250, 204, 21, 0.18), transparent 36%),
        radial-gradient(circle at 100% 8%, rgba(34, 197, 94, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff, #fffdf4);
    border-color: rgba(17, 17, 17, 0.16);
    overflow: hidden;
}

.section-prices .section-head h2 {
    color: #1f2937;
}

.section-prices .price-head {
    margin-bottom: 0.85rem;
}

.price-kpi-grid {
    display: grid;
    gap: 0.72rem;
    margin-bottom: 0.85rem;
}

.price-kpi {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.7rem;
    align-items: center;
    padding: 0.8rem 0.86rem;
    border-radius: 14px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #fffef8;
}

.price-kpi.is-meter {
    border-color: rgba(14, 116, 144, 0.28);
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.72), rgba(255, 255, 255, 0.96));
}

.price-kpi.is-fixed {
    border-color: rgba(22, 163, 74, 0.3);
    background: linear-gradient(135deg, rgba(220, 252, 231, 0.76), rgba(255, 255, 255, 0.96));
}

.price-kpi-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 17, 17, 0.14);
    color: #334155;
}

.price-kpi.is-meter .price-kpi-icon {
    color: #0c4a6e;
    border-color: rgba(14, 116, 144, 0.32);
}

.price-kpi.is-fixed .price-kpi-icon {
    color: #166534;
    border-color: rgba(22, 163, 74, 0.32);
}

.price-kpi-icon svg {
    width: 20px;
    height: 20px;
}

.price-kpi-body {
    min-width: 0;
}

.price-kpi-body small {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
    line-height: 1.25;
}

.price-kpi-body strong {
    display: inline-flex;
    align-items: baseline;
    gap: 0.28rem;
    margin-top: 0.16rem;
    font-size: 1.34rem;
    line-height: 1.15;
    color: #0f172a;
}

.price-kpi-body strong em {
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
}

.price-kpi-body p {
    margin: 0.22rem 0 0;
    font-size: 0.78rem;
    color: #475569;
}

.price-type-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
    margin-bottom: 0.82rem;
}

.price-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    border-radius: 999px;
    padding: 0.3rem 0.62rem;
    border: 1px solid rgba(17, 17, 17, 0.16);
    background: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    color: #374151;
}

.price-chip .chip-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
}

.price-chip .chip-icon svg {
    width: 14px;
    height: 14px;
}

.price-chip.meter {
    border-color: rgba(14, 116, 144, 0.33);
    color: #0c4a6e;
    background: rgba(224, 242, 254, 0.65);
}

.price-chip.fixed {
    border-color: rgba(22, 163, 74, 0.34);
    color: #166534;
    background: rgba(220, 252, 231, 0.72);
}

.price-grid-detailed {
    display: grid;
    gap: 0.78rem;
}

.price-card {
    position: relative;
    display: grid;
    gap: 0.5rem;
    padding: 0.82rem 0.86rem;
    border-radius: 14px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    background: #fffef8;
}

.price-card::before,
.price-card::after {
    content: none;
}

.price-card.is-meter {
    border-color: rgba(14, 116, 144, 0.24);
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.36), rgba(255, 255, 255, 0.96));
}

.price-card.is-fixed {
    border-color: rgba(22, 163, 74, 0.24);
    background: linear-gradient(180deg, rgba(220, 252, 231, 0.4), rgba(255, 255, 255, 0.96));
}

.price-card-head {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 0.6rem;
}

.price-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    background: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #334155;
}

.price-card.is-meter .price-icon {
    color: #0c4a6e;
    border-color: rgba(14, 116, 144, 0.32);
}

.price-card.is-fixed .price-icon {
    color: #166534;
    border-color: rgba(22, 163, 74, 0.32);
}

.price-icon svg {
    width: 18px;
    height: 18px;
}

.price-title-wrap {
    min-width: 0;
}

.price-card h3 {
    margin: 0;
    font-size: 0.95rem;
    color: #0f172a;
}

.price-card .type {
    display: inline-flex;
    align-items: center;
    margin-top: 0.28rem;
    padding: 0.14rem 0.45rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid rgba(17, 17, 17, 0.16);
    color: #334155;
    background: rgba(255, 255, 255, 0.92);
}

.price-card.is-meter .type {
    border-color: rgba(14, 116, 144, 0.3);
    color: #0c4a6e;
    background: rgba(224, 242, 254, 0.72);
}

.price-card.is-fixed .type {
    border-color: rgba(22, 163, 74, 0.3);
    color: #166534;
    background: rgba(220, 252, 231, 0.76);
}

.price-card .amount {
    margin: 0;
    font-size: 1.52rem;
    font-weight: 800;
    line-height: 1.08;
    color: #7a5600;
}

.price-card .amount span {
    margin-inline-start: 0.18rem;
    font-size: 0.74rem;
    color: #475569;
    font-weight: 700;
}

.price-card p {
    margin: 0;
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.38;
}

.section-contact .contact-shell {
    background:
        radial-gradient(circle at 90% 10%, rgba(250, 204, 21, 0.2), transparent 40%),
        linear-gradient(180deg, #fffefa, #fff6d2);
}

.section-contact .section-head h2,
.section-contact .field label {
    color: #0f4c5c;
}

.section-contact .field input,
.section-contact .field select,
.section-contact .field textarea {
    border-color: rgba(15, 76, 92, 0.26);
    background: #f8fdff;
    color: #0f4c5c;
}

.grid-form {
    display: grid;
    gap: 0.85rem;
}

.field {
    display: grid;
    gap: 0.35rem;
}

.field.is-hidden {
    display: none;
}

.field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #353535;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.16);
    border-radius: 12px;
    padding: 0.72rem 0.82rem;
    background: #fff;
    color: #111;
    font: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #eab308;
    outline: 2px solid rgba(250, 204, 21, 0.32);
    outline-offset: 1px;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.full {
    grid-column: 1 / -1;
}

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-start;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.site-footer {
    margin-top: 1.2rem;
    padding: 0;
}

.copyright-license-bar {
    border-top: 1px solid rgba(179, 201, 212, 0.28);
    background:
        linear-gradient(90deg, rgba(250, 204, 21, 0.08) 0%, rgba(250, 204, 21, 0) 42%),
        linear-gradient(180deg, #04202a 0%, #03141b 100%);
}

.copyright-license-top {
    padding: 0.58rem 0 0.5rem;
    border-bottom: 1px solid rgba(179, 201, 212, 0.22);
}

.copyright-footer-copy {
    margin: 0;
    color: #eef7fb;
    font-size: 0.84rem;
    white-space: normal;
}

.copyright-license-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.5rem 0;
}

.copyright-license-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #f4fbff;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.copyright-license-mark-wrap {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.34);
}

.copyright-license-mark {
    width: 25px;
    height: 25px;
}

.copyright-license-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.02rem;
}

.copyright-license-line {
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
    line-height: 1;
}

.copyright-net {
    position: relative;
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    color: #fffdf3;
    text-transform: uppercase;
    animation: netGlow 3s ease-in-out infinite;
}

.copyright-net::before {
    content: "";
    position: absolute;
    top: 2px;
    left: -6px;
    width: 56%;
    height: calc(100% - 4px);
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
    transform: translateX(-128%) skewX(-18deg);
    animation: netSweep 3.4s ease-in-out infinite;
    pointer-events: none;
}

.copyright-net::after {
    content: attr(data-mirror);
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
    transform: scaleY(-1);
    transform-origin: top center;
    color: rgba(255, 229, 167, 0.22);
    line-height: 1;
    -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.56), transparent 70%);
    mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.56), transparent 70%);
    animation: netMirrorPulse 2.6s ease-in-out infinite;
    pointer-events: none;
}

.copyright-php {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fbbf24;
    text-transform: none;
}

.copyright-license-sub {
    font-size: 0.56rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(215, 233, 240, 0.86);
    text-transform: uppercase;
}

.copyright-license-text {
    margin: 0;
    color: #e7f3f8;
    font-size: 0.84rem;
    text-align: right;
    white-space: normal;
}

.copyright-license-domain {
    color: #facc15;
    font-weight: 800;
    font-size: inherit;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.18s ease, text-shadow 0.18s ease;
}

.copyright-license-domain:hover {
    color: #fde68a;
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.35);
}

@keyframes netSweep {
    0% { transform: translateX(-128%) skewX(-18deg); opacity: 0; }
    18% { opacity: 0.9; }
    42% { opacity: 0.2; }
    100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}

@keyframes netMirrorPulse {
    0%, 100% { opacity: 0.18; }
    50% { opacity: 0.3; }
}

@keyframes netGlow {
    0%, 100% { text-shadow: 0 0 0 rgba(255, 255, 255, 0); }
    50% { text-shadow: 0 0 8px rgba(250, 204, 21, 0.24); }
}

.toast {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    z-index: 55;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
}

.toast.success {
    background: #047857;
}

.toast.error {
    background: #b91c1c;
}

@media (min-width: 720px) {
    .hero-grid {
        grid-template-columns: 1.45fr 1fr;
    }

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

    .station-grid,
    .driver-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section-prices .price-kpi-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section-prices .price-grid-detailed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .route-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.25rem;
        row-gap: 1.25rem;
    }

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

    .route-map-canvas {
        height: clamp(190px, 26vh, 230px);
    }

    .route-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu {
        width: auto;
        order: 2;
        margin-inline-start: auto;
        margin-inline-end: 0;
        display: flex;
        gap: 0.35rem;
    }

    .menu a {
        padding-inline: 0.52rem;
    }

    .header-actions {
        order: 3;
        margin-inline-start: 0.35rem;
    }
}

@media (max-width: 719px) {
    .top-nav {
        gap: 0.52rem;
    }

    .menu {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0.34rem;
    }

    .menu a {
        min-height: 35px;
        padding: 0.34rem 0.2rem;
        gap: 0;
    }

    .menu a span:last-child {
        display: none;
    }

    .menu-icon {
        width: 17px;
        height: 17px;
    }

    .reservation-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.72rem;
    }

    .reservation-form .route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.58rem;
    }

    .reservation-form .field label {
        font-size: 0.84rem;
    }

    .reservation-form .field input,
    .reservation-form .field select,
    .reservation-form .field textarea {
        padding: 0.62rem 0.68rem;
    }

    .reservation-form .route-card {
        padding: 0.78rem;
    }

    .route-map-top {
        grid-template-columns: 1fr;
    }

    .route-map-top .btn {
        justify-self: start;
    }

    .copyright-license-top {
        padding: 0.5rem 0 0.45rem;
    }

    .copyright-footer-copy {
        font-size: 0.76rem;
    }

    .copyright-license-inner {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0.48rem;
        padding: 0.45rem 0;
    }

    .copyright-license-mark-wrap {
        width: 30px;
        height: 30px;
    }

    .copyright-license-mark {
        width: 21px;
        height: 21px;
    }

    .copyright-license-brand {
        gap: 0.04rem;
    }

    .copyright-net,
    .copyright-php {
        font-size: 0.86rem;
    }

    .copyright-license-sub {
        font-size: 0.5rem;
        letter-spacing: 0.05em;
    }

    .copyright-license-text {
        font-size: 0.74rem;
        width: 100%;
        white-space: normal;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .top-nav {
        gap: 1rem;
    }

    .section-prices .price-grid-detailed {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vehicle-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.78rem;
    }

    .vehicle-card img {
        aspect-ratio: 16 / 8.8;
    }

    .vehicle-content {
        padding: 0.78rem 0.82rem 0.86rem;
    }

    .vehicle-meta {
        margin-bottom: 0.56rem;
        gap: 0.45rem;
    }

    .vehicle-content h3 {
        margin-bottom: 0.24rem;
        font-size: 1rem;
    }

    .vehicle-content p {
        font-size: 0.86rem;
        line-height: 1.34;
    }

    .feature-list {
        margin-top: 0.62rem;
        gap: 0.36rem 0.62rem;
    }

    .feature-list li {
        gap: 0.38rem;
        font-size: 0.79rem;
    }

    .feature-icon {
        width: 22px;
        height: 22px;
        border-radius: 6px;
    }

    .feature-icon svg {
        width: 12px;
        height: 12px;
    }

    .rating-badge {
        font-size: 0.74rem;
    }

    .rating-badge.interactive .star-btn {
        font-size: 0.88rem;
        padding: 0.02rem 0.06rem;
    }

    .plate-value {
        font-size: 0.66rem;
        letter-spacing: 0.02em;
    }

    .vehicle-content small {
        margin-top: 0.58rem;
        font-size: 0.76rem;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        width: 36px;
        height: 36px;
    }

    .menu a {
        font-size: 0.72rem;
    }

    .menu a span:last-child {
        display: none;
    }

    .plate-real {
        min-height: 22px;
        grid-template-columns: 20px auto;
    }

    .plate-value {
        min-width: 0;
        font-size: 0.66rem;
        letter-spacing: 0.025em;
        padding: 0 0.18rem;
    }

    .lang-menu summary {
        width: 38px;
        height: 28px;
    }

    .route-map-top {
        grid-template-columns: 1fr;
        row-gap: 0.4rem;
    }

    .route-map-top .btn {
        width: fit-content;
        margin-inline-start: 0;
        min-height: 30px;
        padding: 0.36rem 0.56rem;
        font-size: 0.75rem;
        justify-self: start;
    }

    .route-map-canvas {
        height: 162px;
    }
}

@media (max-width: 390px) {
    .reservation-form {
        grid-template-columns: 1fr;
    }

    .reservation-form .route-grid {
        grid-template-columns: 1fr;
    }
}

body.rtl .copyright-license-inner {
    direction: rtl;
}

body.rtl .copyright-license-brand {
    align-items: flex-end;
}

body.rtl .copyright-footer-copy {
    text-align: right;
}

body.rtl .copyright-license-text {
    text-align: right;
}
