@font-face {
    font-family: "VKSans";
    src: url("fonts/vksansdisplay-medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

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

html,
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

.profile-section-label {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    margin-top: 6px;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body {
    font-family: "VKSans", sans-serif;
    background: #0d58ed;
    color: white;
    overflow-x: hidden;
}

input,
select,
button {
    font: inherit;
}

.app-shell {
    min-height: 100vh;
}

.header {
    position: relative;
    height: 82px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 220px;
    max-width: none;
    display: block;
    margin: 0;
}

.logo-btn {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.12s ease, opacity 0.12s ease;
}

.logo-btn:hover {
    transform: scale(1.02);
}

.logo-btn:active {
    transform: scale(0.97);
}

.profile-icon-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s ease, background 0.12s ease;
}

.profile-icon-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.profile-icon-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.profile-icon-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
    pointer-events: none;
    user-select: none;
}

.main {
    padding: 10px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screen {
    width: 100%;
    display: none;
}

#welcomeScreen.screen-active {
    display: block;
    width: 100%;
    animation: fadeInScreen 0.25s ease;
}

#searchScreen.screen-active {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: fadeInScreen 0.25s ease;
}

#tripDetailsScreen.screen-active {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: fadeInScreen 0.25s ease;
}

#bookingScreen.screen-active,
#paymentScreen.screen-active,
#bookingSuccessScreen.screen-active,
#publishTripScreen.screen-active,
#publishPriceScreen.screen-active,
#publishPaymentScreen.screen-active,
#publishSuccessScreen.screen-active,
#helpScreen.screen-active,
#profileScreen.screen-active,
#profilePassengerScreen.screen-active,
#profileDriverScreen.screen-active,
#profileTripsScreen.screen-active,
#profileSavedRoutesScreen.screen-active,
#profileDriverTripsScreen.screen-active {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: fadeInScreen 0.25s ease;
}

.profile-menu-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-trip-card {
    width: 100%;
    background: #f8fbff;
    border: 1px solid #e7edf7;
    border-radius: 18px;
    padding: 14px 14px;
    margin-top: 12px;
    text-align: left;
    cursor: pointer;
    display: block;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.profile-trip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.profile-trip-card:active {
    transform: scale(0.99);
}

.profile-trip-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.profile-trip-route {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
}

.profile-trip-meta {
    font-size: 14px;
    line-height: 1.55;
    color: #4b5563;
}

.profile-trip-status {
    flex-shrink: 0;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.status-viewed {
    background: #f3f4f6;
    color: #6b7280;
}

.status-payment {
    background: #fff7e6;
    color: #b7791f;
}

.status-sent {
    background: #eef4ff;
    color: #0d58ed;
}

.status-booked {
    background: #ecfdf3;
    color: #067647;
}

.status-rejected {
    background: #fef3f2;
    color: #b42318;
}

.profile-summary {
    padding-bottom: 6px;
}

.profile-summary-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.profile-summary-subtitle {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}

.profile-menu-item {
    width: 100%;
    border: 1px solid #e7edf7;
    background: #f8fbff;
    border-radius: 18px;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.profile-menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.profile-menu-item:active {
    transform: scale(0.98);
}

.profile-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.profile-menu-subtitle {
    font-size: 13px;
    line-height: 1.45;
    color: #6b7280;
}

.profile-menu-arrow {
    font-size: 24px;
    color: #9ca3af;
    line-height: 1;
}

@keyframes fadeInScreen {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInList {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* welcome */
.hero-img {
    width: 70%;
    max-width: 320px;
    display: block;
    margin: -10px auto 20px;
    transform: translateX(4%);
}

.title {
    font-family: "VKSans", sans-serif;
    width: 90%;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin: 0 auto 20px;
}

.card {
    width: 100%;
    background: white;
    color: #111827;
    border-radius: 24px;
    padding: 16px 24px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.grabber {
    width: 56px;
    height: 5px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    margin: 0 auto 20px;
}

.description {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 22px;
    text-align: center;
}

.cta {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    color: #111827;
}

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

.btn {
    width: 100%;
    height: 54px;
    border-radius: 16px;
    border: none;
    background: #0d58ed;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:active {
    transform: scale(0.96);
}

.btn:hover {
    transform: scale(1.02);
}

.btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}

.btn.secondary {
    background: #f1f5f9;
    color: #0d58ed;
}

/* search screen */
.search-top {
    width: 100%;
    padding: 8px 16px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0d58ed;
    position: relative;
    z-index: 2;
}

.back-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.12s ease, background 0.12s ease;
}

.back-btn:hover {
    transform: scale(1.04);
}

.back-btn:active {
    transform: scale(0.96);
}

.search-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.search-card {
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.search-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: #4b5563;
    text-align: center;
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field-label {
    font-size: 14px;
    color: #374151;
    margin-top: 2px;
}

.input {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #dbe3f0;
    background: #f8fbff;
    padding: 0 16px;
    font-family: "VKSans", sans-serif;
    font-size: 16px;
    color: #111827;
    outline: none;
}

.input:focus {
    border-color: #0d58ed;
    box-shadow: 0 0 0 3px rgba(13, 88, 237, 0.12);
}

.autocomplete {
    position: relative;
    width: 100%;
}

.suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 20;
    display: none;
}

.suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 14px 16px;
    font-size: 15px;
    color: #111827;
    cursor: pointer;
    border-bottom: 1px solid #eef2f7;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f8fbff;
}

.suggestion-item:active {
    background: #eef4ff;
}

.suggestion-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.suggestion-meta {
    font-size: 13px;
    color: #6b7280;
}

.search-submit-btn {
    margin-top: 10px;
}

.results-wrap {
    width: 100%;
    padding: 0 16px 20px;
    position: relative;
    z-index: 2;
    min-height: 220px;
}

.results-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInList 0.35s ease;
}

.trip-card {
    background: white;
    color: #111827;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trip-card:active {
    transform: scale(0.98);
}

.trip-route {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.trip-meta {
    font-size: 15px;
    color: #5b6475;
    line-height: 1.6;
    margin-bottom: 16px;
}

.trip-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.trip-price {
    font-size: 30px;
    color: #0d58ed;
    font-weight: 700;
}

.trip-btn {
    width: auto;
    min-width: 140px;
    padding: 0 18px;
    height: 48px;
    border-radius: 14px;
    border: none;
    background: #0d58ed;
    color: white;
    font-family: "VKSans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.trip-btn:hover {
    transform: scale(1.02);
}

.trip-btn:active {
    transform: scale(0.96);
}

.empty-state {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(13, 88, 237, 0.18);
    backdrop-filter: blur(4px);
    z-index: 300;
}

.loading-overlay.active {
    display: flex;
}

.loading-box {
    width: 100%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    padding: 26px 20px;
    text-align: center;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 4px solid rgba(13, 88, 237, 0.15);
    border-top-color: #0d58ed;
    animation: spin 0.9s linear infinite;
}

.loading-text {
    font-size: 16px;
    line-height: 1.45;
    color: #111827;
    font-weight: 500;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* details screen */
.flag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;

    background: #eef4ff;
    color: #0d58ed;

    margin-right: 8px;
    margin-bottom: 8px;
    transition: transform 0.15s ease, background 0.2s ease;
}

.flag:hover {
    transform: scale(1.05);
}

.trip-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.trip-trust-box {
    margin: 14px 0 18px;
    padding: 10px 12px;
    border-radius: 16px;
    background: #eef4ff;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.trip-trust-item {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #0d58ed;
    white-space: nowrap;
}

.trust-section {
    background: #f8fbff;
    border: 1px solid #dbe7ff;
    border-radius: 18px;
    padding: 14px;
}

.trip-details-block {
    width: 100%;
}

.trip-smart {
    margin-top: 6px;
}

.trip-smart-hint {
    font-size: 12px;
    color: #6b7280;
}

.trip-details-card {
    background: white;
    color: #111827;
    border-radius: 22px;
    padding: 22px 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    margin-bottom: 16px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.trip-details-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.trip-details-route {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #111827;
}

.trip-details-section {
    margin-bottom: 18px;
}

.trip-details-section:last-child {
    margin-bottom: 0;
}

.trip-details-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

.trip-details-value {
    font-size: 16px;
    color: #111827;
    line-height: 1.6;
}

.trip-details-value strong {
    font-weight: 700;
    color: #111827;
}

.trip-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trip-actions .btn {
    width: 100%;
}

.trip-action-primary {
    background: #ffffff;
    color: #0d58ed;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    font-weight: 700;
}

.trip-action-primary:active {
    transform: scale(0.98);
}

.trip-action-secondary {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-weight: 600;
}

.trip-action-secondary:active {
    transform: scale(0.98);
}

.trip-main {
    margin-bottom: 8px;
}

.trip-extra {
    margin-top: 8px;
    font-size: 13px;
    color: #9ca3af;
}

.trip-live-block {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #e3edff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trip-live-block-details {
    margin-top: 0;
}

.trip-live-item {
    font-size: 13px;
    line-height: 1.4;
    color: #4b5563;
    font-weight: 500;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.payment-trust-block {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid #dbe7ff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-trust-item {
    font-size: 13px;
    line-height: 1.4;
    color: #4b5563;
    text-align: center;
    font-weight: 500;
}

.service-fee-box {
    background: #f8fbff;
    border: 1px solid #dbe3f0;
    border-radius: 18px;
    padding: 16px;
}

.service-fee-price {
    font-size: 28px;
    font-weight: 800;
    color: #0d58ed;
    margin-bottom: 8px;
}

.service-fee-text {
    font-size: 14px;
    line-height: 1.55;
    color: #5b6475;
}

.confirmation-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.45);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 200;
}

.confirmation-modal.active {
    display: flex;
}

.confirmation-dialog {
    width: 100%;
    max-width: 360px;
    background: white;
    border-radius: 22px;
    padding: 22px 18px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.warning-dialog {
    max-width: 340px;
}

.confirmation-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.confirmation-text {
    font-size: 14px;
    line-height: 1.55;
    color: #5b6475;
    margin-bottom: 16px;
}

.confirmation-input {
    margin-bottom: 16px;
}

.success-card {
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: #eef4ff;
    color: #0d58ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.success-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.success-text {
    font-size: 15px;
    line-height: 1.6;
    color: #5b6475;
}

.trip-details-hint {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
}

.publish-textarea {
    width: 100%;
    min-height: 110px;
    border-radius: 14px;
    border: 1px solid #dbe3f0;
    background: #f8fbff;
    padding: 14px 16px;
    font-family: "VKSans", sans-serif;
    font-size: 16px;
    color: #111827;
    outline: none;
    resize: none;
}

.publish-textarea:focus {
    border-color: #0d58ed;
    box-shadow: 0 0 0 3px rgba(13, 88, 237, 0.12);
}

.help-card {
    padding: 22px 20px 24px;
}

.help-section {
    margin-bottom: 22px;
}

.help-section:last-child {
    margin-bottom: 0;
}

.help-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.help-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

.help-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-list-item {
    font-size: 15px;
    line-height: 1.65;
    color: #4b5563;
}

.faq-item {
    background: #f8fbff;
    border: 1px solid #e5edf8;
    border-radius: 16px;
    padding: 14px 14px;
    margin-bottom: 10px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.6;
    color: #5b6475;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.status-badge.pending {
    background: #fff7e6;
    color: #b7791f;
}

.status-badge.success {
    background: #ecfdf3;
    color: #067647;
}

.status-badge.rejected {
    background: #fef3f2;
    color: #b42318;
}

.status-badge.active {
    background: #eef4ff;
    color: #0d58ed;
}

.status-badge.hidden {
    background: #f4f4f5;
    color: #52525b;
}

.status-section-title {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

.status-section-value {
    font-size: 16px;
    line-height: 1.6;
    color: #111827;
    margin-bottom: 14px;
}

.status-section-value:last-child {
    margin-bottom: 0;
}

.results-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.results-sort {
    height: 48px;
}

.results-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.results-filter input {
    width: 18px;
    height: 18px;
}

.verified-badge-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: -3px;
    margin: 0 2px 0 2px;
}

.verified-badge-icon-details {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
}

.trip-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

/* desktop only */
@media (min-width: 1024px) {
    .header {
        padding: 28px 32px 12px;
    }

    .logo {
        width: 60%;
        max-width: 260px;
        display: block;
        margin: -10px auto 0;
    }

    .main {
        min-height: calc(100vh - 100px);
        padding: 20px 24px 60px;
    }

    .hero-img {
        width: 70%;
        max-width: 320px;
        display: block;
        margin: -10px auto 20px;
        transform: translateX(4%);
    }

    .title {
        width: 100%;
        max-width: 760px;
        font-size: 44px;
        line-height: 1.1;
        margin-bottom: 28px;
    }

    .card {
        width: 100%;
        max-width: 760px;
        border-radius: 32px;
        padding: 20px 40px 40px;
    }

    .grabber {
        margin-bottom: 28px;
    }

    .description {
        max-width: 640px;
        margin: 0 auto 28px;
        font-size: 20px;
        line-height: 1.5;
    }

    .cta {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 20px;
        text-align: center;
        color: #111827;
    }

    .buttons {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
        gap: 16px;
    }

    .btn {
        height: 64px;
        font-size: 22px;
        border-radius: 18px;
    }

    .search-top,
    .results-wrap {
        max-width: 760px;
        padding-left: 0;
        padding-right: 0;
    }

    .search-title {
        font-size: 38px;
    }

    .search-subtitle {
        font-size: 18px;
    }

    .field-label {
        font-size: 16px;
    }

    .input {
        height: 58px;
        font-size: 18px;
    }

    .results-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .trip-card:active {
        transform: scale(0.98);
    }

    .trip-route {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .trip-meta {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .trip-price {
        font-size: 32px;
        color: #0d58ed;
        font-weight: 800;
    }

    .trip-btn {
        font-weight: 600;
        height: 48px;
        font-size: 16px;
    }

    .results-controls {
        flex-direction: row;
        align-items: center;
    }

    .results-sort {
        max-width: 320px;
    }

    .results-filter {
        width: auto;
        color: white;
    }
}