/* ============================================================
   CTV TRANSPORT — STYLE PRINCIPAL

   COULEURS DU SITE
   ------------------------------------------------------------
   Bleu foncé  : #063B73
   Bleu        : #0875C9
   Bleu clair  : #EAF5FF
   Blanc       : #FFFFFF
   Orange      : #F28C28

   Pour modifier les couleurs du site :
   change simplement les variables ci-dessous.
============================================================ */

:root {

    --blue-dark: #063B73;
    --blue: #0875C9;
    --blue-light: #EAF5FF;

    --orange: #F28C28;

    --white: #FFFFFF;
    --black: #101820;

    --gray-50: #F7F9FC;
    --gray-100: #EEF2F6;
    --gray-300: #D6DDE5;
    --gray-500: #687586;
    --gray-700: #334155;

    --shadow: 0 15px 45px rgba(6, 59, 115, .10);

    --radius: 18px;
}


/* ============================================================
   RESET
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--gray-50);
    color: var(--black);
    line-height: 1.6;
}

button,
input,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

.section {
    padding: 90px 0;
}


/* ============================================================
   HEADER
============================================================ */

.header {
    height: 76px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);

    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-ctv {
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--blue-dark);
}

.logo-text {
    font-size: 10px;
    font-weight: 800;
    color: var(--gray-500);
    letter-spacing: 1px;
    border-left: 1px solid var(--gray-300);
    padding-left: 10px;
}

.nav nav {
    display: flex;
    gap: 34px;
}

.nav nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);

    transition: .2s;
}

.nav nav a:hover {
    color: var(--blue);
}

.mobile-menu {
    display: none;

    background: none;
    border: none;
    color: var(--blue-dark);
}


/* ============================================================
   HERO
============================================================ */

.hero {
    height: 570px;
    position: relative;
    overflow: hidden;

    background: var(--blue-dark);
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
    background:
        linear-gradient(135deg,
        #063B73,
        #0875C9);
}

.image-placeholder svg {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
    opacity: .8;
}

.image-placeholder span {
    font-size: 15px;
    font-weight: 800;
}

.image-placeholder small {
    margin-top: 7px;
    opacity: .7;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 33, 65, .94) 0%,
            rgba(3, 33, 65, .68) 45%,
            rgba(3, 33, 65, .20) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    color: white;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;

    margin-bottom: 18px;
}

.hero-badge span {
    width: 9px;
    height: 9px;

    border-radius: 50%;
    background: var(--orange);
}

.hero h1 {
    max-width: 600px;

    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 20px;
}

.hero h1 strong {
    color: #65B7F0;
}

.hero p {
    max-width: 520px;

    font-size: 18px;
    color: rgba(255,255,255,.82);

    margin-bottom: 30px;
}

.hero-button {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 22px;

    background: var(--white);
    color: var(--blue-dark);

    border-radius: 10px;

    font-weight: 800;
    font-size: 14px;

    transition: .25s;
}

.hero-button:hover {
    transform: translateY(-3px);
}

.hero-button svg {
    width: 17px;
}


/* ============================================================
   QUICK INFO
============================================================ */

.quick-info {
    background: var(--white);

    border-bottom: 1px solid var(--gray-100);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 24px 20px;

    border-right: 1px solid var(--gray-100);
}

.quick-item:last-child {
    border: none;
}

.quick-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    background: var(--blue-light);
    color: var(--blue);

    border-radius: 12px;
}

.quick-icon svg {
    width: 21px;
}

.quick-item strong,
.quick-item span {
    display: block;
}

.quick-item strong {
    font-size: 14px;
}

.quick-item span {
    font-size: 12px;
    color: var(--gray-500);
}


/* ============================================================
   TITRES DE SECTION
============================================================ */

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 40px;
}

.section-heading.centered {
    display: block;
    text-align: center;
}

.section-label {
    display: inline-block;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.8px;

    color: var(--blue);

    margin-bottom: 9px;
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading p {
    max-width: 400px;
    color: var(--gray-500);
    font-size: 14px;
}


/* ============================================================
   DESTINATIONS
============================================================ */

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.destination-card {
    min-height: 150px;

    padding: 22px;

    background: var(--white);
    border: 1px solid var(--gray-100);

    border-radius: var(--radius);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-shadow: 0 5px 20px rgba(0,0,0,.025);

    transition: .25s;
}

.destination-card:hover {
    transform: translateY(-5px);
    border-color: #B9D9F2;

    box-shadow: var(--shadow);
}

.destination-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: var(--blue-light);
    color: var(--blue);

    border-radius: 10px;
}

.destination-icon svg {
    width: 18px;
}

.destination-card strong {
    font-size: 16px;
}

.destination-card small {
    color: var(--gray-500);
    font-size: 12px;
}


/* ============================================================
   RÉSERVATION
============================================================ */

.booking-section {
    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            #EDF6FD 0%,
            #F7F9FC 100%
        );
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;

    gap: 25px;

    align-items: start;
}

.booking-card {
    background: var(--white);

    border-radius: 24px;

    box-shadow: var(--shadow);

    overflow: hidden;
}

.booking-header {
    padding: 30px;

    display: flex;
    justify-content: space-between;

    border-bottom: 1px solid var(--gray-100);
}

.booking-header h2 {
    font-size: 30px;
}

.booking-header h2 span {
    color: var(--blue);
}

.step-number {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: var(--blue-light);
    color: var(--blue);

    border-radius: 50%;

    font-weight: 800;
}

.booking-step {
    display: none;
    padding: 35px;
}

.booking-step.active {
    display: block;
}

.step-title {
    display: flex;
    gap: 15px;
    align-items: center;

    margin-bottom: 30px;
}

.step-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: var(--blue);
    color: white;

    border-radius: 14px;
}

.step-icon svg {
    width: 21px;
}

.step-title h3 {
    font-size: 18px;
}

.step-title p {
    color: var(--gray-500);
    font-size: 13px;
}


/* ============================================================
   FORMULAIRES
============================================================ */

.field {
    margin-bottom: 20px;
}

.field label,
.field-label {
    display: block;

    font-size: 12px;
    font-weight: 800;

    margin-bottom: 8px;

    color: var(--gray-700);
}

.input-icon {
    position: relative;
}

.input-icon svg {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    width: 17px;

    color: var(--gray-500);

    pointer-events: none;
}

input,
select {
    width: 100%;

    height: 52px;

    border: 1px solid var(--gray-300);

    border-radius: 11px;

    padding: 0 15px 0 45px;

    outline: none;

    background: white;

    color: var(--black);

    font-size: 14px;

    transition: .2s;
}

input:focus,
select:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(8,117,201,.10);
}

.route-inputs {
    display: grid;

    grid-template-columns: 1fr 50px 1fr;

    align-items: end;

    gap: 12px;
}

.swap-button {
    width: 46px;
    height: 46px;

    border: 1px solid var(--gray-300);

    background: white;

    color: var(--blue);

    border-radius: 50%;

    display: grid;
    place-items: center;

    margin-bottom: 3px;

    transition: .2s;
}

.swap-button:hover {
    background: var(--blue);
    color: white;
}

.swap-button svg {
    width: 18px;
}


/* ============================================================
   HORAIRES
============================================================ */

.time-options {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-bottom: 30px;
}

.time-card {
    border: 1px solid var(--gray-300);

    border-radius: 13px;

    padding: 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    cursor: pointer;

    transition: .2s;
}

.time-card input {
    display: none;
}

.time-card div {
    flex: 1;
}

.time-card strong,
.time-card span {
    display: block;
}

.time-card strong {
    font-size: 20px;
}

.time-card span {
    color: var(--gray-500);
    font-size: 12px;
}

.time-card > svg {
    color: var(--orange);
}

.time-card:has(input:checked) {
    border-color: var(--blue);
    background: var(--blue-light);
    color: var(--blue-dark);
}


/* ============================================================
   SIÈGES
============================================================ */

.seat-legend {
    display: flex;
    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 20px;
}

.seat-legend span {
    display: flex;
    align-items: center;

    gap: 7px;

    font-size: 11px;

    color: var(--gray-500);
}

.legend {
    width: 13px;
    height: 13px;

    display: block;

    border-radius: 4px;

    border: 1px solid var(--gray-300);
}

.legend.available {
    background: white;
}

.legend.selected {
    background: var(--blue);
    border-color: var(--blue);
}

.legend.blocked {
    background: #DCE2E8;
}


.bus {
    max-width: 410px;

    margin: auto;

    background: #F1F4F7;

    border: 2px solid #D8E0E7;

    border-radius: 55px 55px 35px 35px;

    padding: 20px 25px 25px;

    position: relative;
}

.driver-area {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 4px 12px 15px;

    color: var(--gray-500);

    font-size: 9px;
    font-weight: 800;
}

.driver-area svg {
    width: 20px;
}

.bus-front,
.bus-back {
    text-align: center;

    font-size: 9px;
    font-weight: 800;

    color: var(--gray-500);

    margin-bottom: 12px;
}

.bus-back {
    margin-top: 16px;
    margin-bottom: 0;
}

.seat-container {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 9px;

    padding: 12px 8px;
}

.seat {
    height: 42px;

    border-radius: 8px;

    border: 1px solid #C8D2DC;

    background: white;

    color: var(--blue-dark);

    font-size: 11px;

    font-weight: 800;

    transition: .15s;
}

.seat:hover:not(.blocked) {
    border-color: var(--blue);
    transform: scale(1.04);
}

.seat.selected {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.seat.blocked {
    background: #DCE2E8;
    color: #98A4AF;

    cursor: not-allowed;

    text-decoration: line-through;
}


/* ============================================================
   DEUX COLONNES
============================================================ */

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


/* ============================================================
   BOUTONS
============================================================ */

.next-button,
.confirm-button,
.print-button {
    border: none;

    min-height: 50px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 10px;

    background: var(--blue);

    color: white;

    font-weight: 800;

    font-size: 13px;

    transition: .2s;
}

.next-button {
    margin-left: auto;
}

.next-button:hover,
.confirm-button:hover,
.print-button:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;

    margin-top: 30px;
}

.back-button {
    border: 1px solid var(--gray-300);

    background: white;

    color: var(--gray-700);

    border-radius: 10px;

    padding: 0 18px;

    min-height: 50px;

    display: flex;
    align-items: center;
    gap: 8px;

    font-weight: 700;
}

.back-button:hover {
    border-color: var(--blue);
    color: var(--blue);
}


/* ============================================================
   RÉCAPITULATIF
============================================================ */

.summary-card {
    background: var(--blue-dark);

    color: white;

    border-radius: 22px;

    padding: 25px;

    position: sticky;
    top: 100px;

    box-shadow: 0 20px 45px rgba(6,59,115,.20);
}

.summary-top {
    display: flex;
    justify-content: space-between;

    align-items: center;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;

    color: #8FC8F2;

    margin-bottom: 30px;
}

.summary-top svg {
    width: 20px;
}

.summary-route {
    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;
}

.summary-route div small,
.summary-route div strong {
    display: block;
}

.summary-route small {
    font-size: 9px;
    color: #8CA6BD;
    margin-bottom: 4px;
}

.summary-route strong {
    font-size: 17px;
}

.summary-route > div:last-child {
    text-align: right;
}

.route-line {
    display: flex;
    align-items: center;
    gap: 5px;
}

.route-line span {
    width: 15px;
    height: 1px;

    background: #47769A;
}

.route-line svg {
    width: 18px;
    color: #7DC4F2;
}

.summary-info {
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);

    padding: 20px 0;

    display: grid;

    gap: 18px;
}

.summary-info > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary-info svg {
    width: 17px;
    color: #72B9E9;
}

.summary-info small,
.summary-info strong {
    display: block;
}

.summary-info small {
    font-size: 10px;
    color: #8CA6BD;
}

.summary-info strong {
    font-size: 13px;
}

.summary-total {
    padding-top: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total span {
    color: #8CA6BD;
    font-size: 12px;
}

.summary-total strong {
    color: white;
    font-size: 21px;
}


/* ============================================================
   MESSAGE PAIEMENT
============================================================ */

.payment-warning {
    display: flex;
    gap: 12px;

    padding: 16px;

    background: #FFF7ED;

    border: 1px solid #FED7AA;

    border-radius: 12px;

    color: #9A5B17;

    margin-bottom: 20px;
}

.payment-warning svg {
    flex-shrink: 0;
}

.payment-warning strong {
    font-size: 13px;
}

.payment-warning p {
    font-size: 12px;
    margin-top: 4px;
}

.confirmation-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    font-size: 13px;

    cursor: pointer;
}

.confirmation-check input {
    width: 18px;
    height: 18px;

    margin: 0;
    padding: 0;
}


/* ============================================================
   HORAIRES
============================================================ */

.schedule-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    max-width: 800px;

    margin: auto;

    gap: 20px;
}

.schedule-card {
    background: white;

    padding: 30px;

    border-radius: 18px;

    display: flex;
    align-items: center;

    gap: 20px;

    border: 1px solid var(--gray-100);

    box-shadow: var(--shadow);
}

.schedule-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    border-radius: 16px;
}

.schedule-icon svg {
    width: 26px;
}

.schedule-icon.morning {
    background: #FFF5E8;
    color: var(--orange);
}

.schedule-icon.evening {
    background: var(--blue-light);
    color: var(--blue);
}

.schedule-card span,
.schedule-card strong,
.schedule-card p {
    display: block;
}

.schedule-card span {
    font-size: 10px;
    font-weight: 900;
    color: var(--gray-500);
}

.schedule-card strong {
    font-size: 30px;
    color: var(--blue-dark);
}

.schedule-card p {
    color: var(--gray-500);
    font-size: 12px;
}


/* ============================================================
   TARIFS
============================================================ */

.price-table-wrapper {
    background: white;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid var(--gray-100);

    box-shadow: var(--shadow);
}

table {
    width: 100%;

    border-collapse: collapse;
}

th {
    background: var(--blue-dark);

    color: white;

    font-size: 11px;

    text-align: left;

    padding: 18px;
}

td {
    padding: 18px;

    border-bottom: 1px solid var(--gray-100);

    font-size: 13px;
}

td:not(:first-child) {
    font-weight: 800;
    color: var(--blue);
}

tr:last-child td {
    border-bottom: none;
}


/* ============================================================
   MES RÉSERVATIONS
============================================================ */

.reservations-list {
    display: grid;
    gap: 15px;
}

.empty-reservations {
    text-align: center;

    background: white;

    padding: 55px 20px;

    border-radius: 18px;

    border: 1px solid var(--gray-100);
}

.empty-reservations svg {
    width: 40px;
    color: var(--blue);

    margin-bottom: 12px;
}

.empty-reservations h3 {
    font-size: 18px;
}

.empty-reservations p {
    font-size: 13px;
    color: var(--gray-500);
}

.reservation-item {
    background: white;

    border-radius: 15px;

    padding: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border: 1px solid var(--gray-100);

    box-shadow: 0 5px 20px rgba(0,0,0,.03);
}

.reservation-item strong {
    display: block;
}

.reservation-item span {
    font-size: 12px;
    color: var(--gray-500);
}

.view-ticket {
    border: none;

    background: var(--blue-light);

    color: var(--blue);

    padding: 10px 15px;

    border-radius: 9px;

    font-weight: 800;
}


/* ============================================================
   FOOTER
============================================================ */

.footer {
    background: #032B54;

    color: white;
}

.footer-content {
    padding: 55px 0;

    display: flex;
    justify-content: space-between;

    gap: 40px;
}

.footer .logo-ctv {
    color: white;
}

.footer .logo-text {
    color: #8CA6BD;
    border-color: #41627D;
}

.footer-brand p {
    max-width: 320px;

    color: #9DB4C8;

    font-size: 13px;

    margin-top: 15px;
}

.footer-contact h3 {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-contact p {
    display: flex;
    gap: 8px;

    align-items: center;

    color: #B6C9D8;

    font-size: 13px;

    margin-bottom: 8px;
}

.footer-contact svg {
    width: 15px;
    color: #70B8E8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);

    text-align: center;

    padding: 20px;

    color: #7894AA;

    font-size: 11px;
}


/* ============================================================
   MODALE TICKET
============================================================ */

.modal {
    position: fixed;
    inset: 0;

    background: rgba(2,25,47,.75);

    backdrop-filter: blur(5px);

    z-index: 2000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.modal.active {
    display: flex;
}

.ticket-modal {
    width: min(500px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    background: white;

    border-radius: 20px;

    padding: 30px;

    position: relative;

    box-shadow: 0 30px 80px rgba(0,0,0,.30);
}

.close-modal {
    position: absolute;

    right: 15px;
    top: 15px;

    width: 35px;
    height: 35px;

    border: none;

    border-radius: 50%;

    background: var(--gray-100);

    color: var(--gray-700);
}

.ticket-header {
    text-align: center;

    padding-bottom: 25px;

    border-bottom: 2px dashed var(--gray-300);
}

.ticket-logo {
    font-size: 35px;
    font-weight: 900;
    color: var(--blue-dark);
}

.ticket-header span {
    font-size: 10px;
    font-weight: 900;
    color: var(--gray-500);
    letter-spacing: 2px;
}

.ticket-route {
    display: grid;
    grid-template-columns: 1fr auto 1fr;

    gap: 15px;

    align-items: center;

    padding: 25px 0;

    border-bottom: 1px solid var(--gray-100);
}

.ticket-route div:last-child {
    text-align: right;
}

.ticket-route small,
.ticket-route strong {
    display: block;
}

.ticket-route small {
    font-size: 9px;
    color: var(--gray-500);
}

.ticket-route strong {
    font-size: 17px;
    color: var(--blue-dark);
}

.ticket-route svg {
    width: 20px;
    color: var(--blue);
}

.ticket-details {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;

    padding: 25px 0;
}

.ticket-details span,
.ticket-details strong {
    display: block;
}

.ticket-details span {
    font-size: 8px;
    color: var(--gray-500);
    font-weight: 800;
}

.ticket-details strong {
    font-size: 12px;
}

.ticket-total {
    display: flex;
    justify-content: space-between;

    padding: 18px;

    background: var(--blue-light);

    border-radius: 12px;

    color: var(--blue-dark);
}

.ticket-total span {
    font-size: 12px;
}

.ticket-total strong {
    font-size: 20px;
}

.ticket-message {
    text-align: center;

    font-size: 11px;

    color: var(--gray-500);

    margin: 20px 0;
}

.print-button {
    width: 100%;
}


/* ============================================================
   RESPONSIVE TABLETTE
============================================================ */

@media (max-width: 900px) {

    .booking-layout {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: static;
        order: -1;
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .summary-info {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ============================================================
   RESPONSIVE MOBILE
============================================================ */

@media (max-width: 650px) {

    .container {
        width: min(100% - 25px, 1180px);
    }

    .section {
        padding: 60px 0;
    }

    .nav nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 15px;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-100);
    }

    .section-heading {
        display: block;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        margin-top: 10px;
    }

    .destination-grid {
        grid-template-columns: 1fr 1fr;
    }

    .booking-header {
        padding: 22px;
    }

    .booking-header h2 {
        font-size: 24px;
    }

    .booking-step {
        padding: 22px;
    }

    .route-inputs {
        grid-template-columns: 1fr;
    }

    .swap-button {
        margin: -2px auto;
        transform: rotate(90deg);
    }

    .time-options {
        grid-template-columns: 1fr;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .step-actions {
        flex-direction: column-reverse;
    }

    .next-button,
    .back-button,
    .confirm-button {
        width: 100%;
        margin: 0;
    }

    .summary-info {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .price-table-wrapper {
        overflow-x: auto;
    }

    table {
        min-width: 500px;
    }

    .footer-content {
        flex-direction: column;
    }

    .reservation-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .view-ticket {
        width: 100%;
    }

    .ticket-details {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   IMPRESSION
============================================================ */

@media print {

    body * {
        visibility: hidden;
    }

    .ticket-modal,
    .ticket-modal * {
        visibility: visible;
    }

    .ticket-modal {
        position: absolute;

        left: 0;
        top: 0;

        width: 100%;

        box-shadow: none;
    }

    .close-modal,
    .ticket-actions {
        display: none;
    }

}