﻿.rs-hero-content {
    max-width: 700px;
    padding-bottom: 70px;
}
.rs-hero-content h1 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
    font-weight: 850;
    margin: 10px 0 14px;
    color: #fffaf0;
}
.rs-hero-content > p {
    color: rgba(255, 250, 240, 0.72);
    font-size: 16px;
    max-width: 560px;
    margin-bottom: 28px;
}
.rs-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.rs-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 250, 240, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.07);
    transition: background 0.2s;
}
.rs-badge:hover {
    background: rgba(255, 250, 240, 0.12);
}
.rs-badge > span {
    font-size: 20px;
    flex-shrink: 0;
}
.rs-badge b {
    display: block;
    color: #fffaf0;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 1px;
}
.rs-badge small {
    display: block;
    color: rgba(255, 250, 240, 0.58);
    font-size: 11px;
}
.rs-search-box {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 250, 240, 0.96);
    border-radius: 10px;
    padding: 7px;
    max-width: 580px;
    box-shadow: 0 24px 64px rgba(13, 27, 42, 0.32);
}
.rs-search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}
.rs-search-input svg {
    width: 18px;
    height: 18px;
    color: #7a612f;
    flex-shrink: 0;
}
.rs-search-input input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 11px 0;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #15171a;
}
.rs-search-input input:focus {
    outline: none;
}
.rs-search-input input::placeholder {
    color: #73695a;
    font-weight: 500;
}
.rs-search-btn {
    background: #15171a;
    color: #fffaf0;
    border: none;
    border-radius: 7px;
    padding: 12px 24px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.2s;
}
.rs-search-btn:hover {
    background: #7a612f;
    transform: translateY(-1px);
}
.rs-search-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.rs-no-results {
    text-align: center;
    padding: 72px 32px;
    color: #6f736f;
}
.rs-no-results-icon {
    font-size: 56px;
    margin-bottom: 16px;
}
.rs-no-results h2 {
    font-size: 22px;
    color: #15171a;
    margin-bottom: 8px;
    font-weight: 800;
}
.rs-no-results p {
    font-size: 14px;
}
.reservation-card {
    background: #fffaf0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(21, 23, 26, 0.1);
    box-shadow: 0 20px 56px rgba(21, 23, 26, 0.1);
    margin-bottom: 32px;
}
.reservation-header {
    background: #15171a;
    padding: 24px 32px;
    color: #fffaf0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.reservation-header h2 {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d6b16a;
    margin: 0 0 6px;
}
.reservation-code {
    font-size: 24px;
    font-weight: 900;
    color: #fffaf0;
}
.reservation-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.route-info {
    padding: 28px 32px;
    border-bottom: 1px solid rgba(21, 23, 26, 0.08);
}
.route-row {
    display: flex;
    align-items: center;
    gap: 20px;
}
.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.location-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.location-item.pickup .location-icon {
    background: rgba(214, 177, 106, 0.18);
}
.location-item.dropoff .location-icon {
    background: rgba(118, 156, 145, 0.18);
}
.location-details h3 {
    margin: 0;
    font-size: 11px;
    color: #7a612f;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.location-details p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #15171a;
    font-weight: 700;
}
.route-arrow {
    font-size: 20px;
    color: rgba(21, 23, 26, 0.2);
    flex-shrink: 0;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(21, 23, 26, 0.08);
    background: rgba(21, 23, 26, 0.02);
}
.detail-item {
    padding: 20px 24px;
    border-right: 1px solid rgba(21, 23, 26, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.detail-item:last-child {
    border-right: none;
}
.detail-label {
    font-size: 11px;
    color: #7a612f;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.detail-value {
    font-size: 16px;
    color: #15171a;
    font-weight: 800;
}
.passenger-section {
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.passenger-info h3,
.additional-info h3 {
    font-size: 11px;
    color: #7a612f;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}
.passenger-name {
    font-size: 18px;
    color: #15171a;
    font-weight: 800;
    margin-bottom: 6px;
}
.passenger-email {
    font-size: 13px;
    color: #6f736f;
    word-break: break-all;
}
.info-row {
    margin-bottom: 12px;
}
.info-label {
    font-size: 11px;
    color: #73695a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}
.info-value {
    font-size: 14px;
    color: #15171a;
    font-weight: 700;
}
.info-value.status {
    background: rgba(214, 177, 106, 0.2);
    color: #7a612f;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
}
.back-search-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: #15171a;
    color: #fffaf0;
    border: none;
    border-radius: 7px;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
}
.back-search-btn:hover {
    background: #7a612f;
}
@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .passenger-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .rs-search-box {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .rs-badges {
        flex-direction: column;
    }
    .rs-search-box {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .rs-search-btn {
        width: 100%;
        text-align: center;
    }
    .route-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .route-arrow {
        transform: rotate(90deg);
        align-self: center;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
    .detail-item {
        border-right: none;
        border-bottom: 1px solid rgba(21, 23, 26, 0.08);
    }
    .detail-item:last-child {
        border-bottom: none;
    }
    .reservation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }
    .route-info,
    .passenger-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    .rs-hero-content h1 {
        font-size: 28px;
    }
}
