@import url('https://unpkg.com/leaflet@1.9.4/dist/leaflet.css');

#page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logo-preloader {
    width: 210px;
    height: auto;
}

#path1,
#path2 {
    stroke-dasharray: 11000;
    stroke-dashoffset: 11000;
    fill: transparent;
    stroke: #989896;
    stroke-width: 60;
}

#path1.anim-run {
    animation: preloaderDraw 0.8s ease-out forwards, preloaderFill1 0.3s ease-out forwards 0.85s;
    animation-fill-mode: forwards;
}

#path2.anim-run {
    animation: preloaderDraw 0.8s ease-out forwards, preloaderFill2 0.3s ease-out forwards 1.1s;
    animation-fill-mode: forwards;
}

@keyframes preloaderDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes preloaderFill1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: #989896;
    }
}

@keyframes preloaderFill2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: #989896;
    }
}

.btn-primary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--white) !important;
}

.btn-primary:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

[class$="-selection-page"] {
    margin-top: 130px;
}

.dashboard-selection-page {
    padding: 40px 0 30px;
}

.top-tabs {
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid var(--gray-500);
    margin: 0;
}

.top-tabs .col-12 {
    display: flex;
    align-items: flex-end;
    position: relative;
    gap: 0.75rem;
}

.dash-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.03rem;
    padding: 0 1.5rem;
}

.dashboard-subtabs {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.dash-subtab {
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-600);
    position: relative;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
}

.dash-subtab:hover {
    color: var(--dark-color);
}

.dash-subtab.active {
    color: var(--dark-color);
    border-bottom-color: var(--dark-color);
}

.ride-list {
    overflow: hidden;
}

.ride-head,
.ride-row {
    display: grid;
    grid-template-columns: 1fr 2.5fr 2.5fr 1.2fr 1fr;
    align-items: center;
    padding: 1rem 1.5rem;
    column-gap: 1.5rem;
}

.ride-head {
    border-bottom: 1px solid var(--border-color);
    min-height: 70px;
    background: var(--primary-lighter-30);
}

.ride-head-label {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.ride-row {
    background: var(--white);
    transition: background 0.2s;
}

.ride-row:hover {
    background: var(--light-color);
}

.ride-row:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.ride-col {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ride-date-main {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.ride-time {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.ride-status {
    width: fit-content;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 2px;
}

.ride-label {
    display: none;
}

.ride-value {
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.4;
}

.ride-price .ride-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-color);
}

@media (max-width: 991px) {
    .dashboard-selection-page {
        margin-top: 100px;
        padding: 20px 0 24px;
    }

    .top-tabs .col-12 {
        align-items: flex-start;
        gap: 0.5rem;
    }

    .dash-title {
        padding: 0;
    }

    .dashboard-subtabs {
        position: static;
        transform: none;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .dashboard-subtabs .dash-subtab {
        padding: 0.35rem 0;
    }

    .ride-head {
        display: none;
    }

    .ride-row {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
        padding: 1.25rem;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 1rem;
        position: relative;
    }

    .ride-col {
        gap: 0.25rem;
        width: 100%;
    }

    .ride-label {
        display: block;
        font-size: 0.75rem;
        color: var(--gray-600);
        text-transform: uppercase;
        letter-spacing: 0.05rem;
        font-weight: 700;
        margin-bottom: 0.15rem;
    }

    .ride-date-main {
        font-size: 1rem;
        font-weight: 700;
    }

    .ride-time {
        font-size: 0.9rem;
        color: var(--gray-700);
    }

    .ride-price .ride-value {
        font-size: 1.05rem;
    }

    .ride-status {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        margin: 0;
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }

    .ride-col.ride-date {
        display: block;
    }
}

@media (max-width: 991px) {
    #dashboard-root {
        flex-direction: column;
    }

    .dashboard-content {
        padding: 1.5rem 1.25rem;
    }

    .ride-head,
    .ride-row {
        grid-template-columns: 1fr 1fr;
    }

    .ride-col {
        padding: 0.2rem 0;
    }
}

.booking-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    margin: 130px 5.3rem 10px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    max-height: 200px;
    display: flex;
    align-items: center;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.booking-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.booking-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.booking-hero-content p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
    color: var(--white);
}

@media (max-width: 767.98px) {
    .booking-hero {
        margin: 80px 0 0;
        border-radius: 0;
        padding: 40px 0;
        max-height: 160px;
    }

    .booking-hero-content h1 {
        font-size: 1.75rem;
    }

    .booking-hero-content p {
        font-size: 1rem;
    }
}

.booking-selection-page {
    padding: 30px 0 30px;
    background: var(--gray-50);
    margin: 0 5.3rem;
}

.time-option-disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
    color: var(--gray-500);
}

.booking-input-body:has(#card-element) {
    display: block !important;
}

#card-element {
    min-height: 28px;
    width: 100%;
}

@media (max-width: 767.98px) {
    .booking-selection-page {
        margin: 0;
    }
}

.booking-stepper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px 40px 10px;
    margin-bottom: 25px;
}

@media (max-width: 991.98px) {
    .booking-stepper {
        display: none;
    }
}

.stepper-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stepper-label-wrapper {
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper-label {
    font-size: .75rem;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: .02rem;
    white-space: nowrap;
    text-decoration: none;
    transition: all .3s ease;
}

.stepper-label:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.stepper-label.active {
    color: var(--primary-color);
    font-weight: 600;
}

.stepper-spacer {
    flex: 1;
}

.stepper-track {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stepper-node {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: .85rem;
    transition: all .3s ease;
    text-decoration: none;
}

.stepper-node:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.stepper-node.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 8px var(--primary-20);
}

.stepper-node.completed {
    background: var(--success-color);
    border-color: var(--success-color);
    color: var(--white);
}

.stepper-node.completed:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.stepper-line {
    flex: 1;
    height: 1px;
    background: var(--gray-200);
    transition: all .3s ease;
}

.stepper-line.active {
    background: var(--primary-color);
}

.map-container {
    position: relative;
    background: white;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px var(--primary-10);
    border: 1px solid var(--primary-30);
}

#route-map {
    width: 100%;
    height: 300px;
}

.custom-marker {
    background: transparent;
    border: none;
}

.custom-marker div {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: .85rem;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px var(--primary-20);
}

.custom-marker.marker-start div {
    background: var(--primary-color);
}

.custom-marker.marker-end div {
    background: var(--secondary-color);
}

.map-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: white;
    padding: 8px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.map-info i {
    color: var(--success-color);
}

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

.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
}

.loading-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
}

.vehicle-selector-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0px 0 20px;
    box-shadow: 0 3px 10px var(--primary-30);
}

.selector-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    color: var(--white);
}

.selector-icon .bi-plus-lg {
    font-size: 1.5rem;
}

.selector-info {
    text-align: center;
    color: var(--white);
}

.selector-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.selector-info p {
    font-size: .95rem;
    opacity: .9;
    margin: 0;
}

.btn-select-vehicles {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 2px;
    align-items: center;
    transition: all .3s ease;
    min-width: 450px;
    text-align: center;
}

.btn-select-vehicles:hover {
    background: var(--gray-50);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--black-20);
}

.multiple-vehicles-section {
    margin-top: 20px;
    padding: 0 !important;
    background: var(--gray-50);
    border-radius: 12px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.section-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.btn-close-section {
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all .2s ease;
}

.btn-close-section:hover {
    background: var(--gray-200);
    color: var(--dark-color);
}

.vehicle-selector-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.selector-vehicle-card {
    background: white;
    border-radius: 2px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-20);
    position: relative;
    overflow: visible;
}

.selector-vehicle-card:hover {
    border-color: var(--gray-200);
    box-shadow: 0 4px 16px var(--primary-20);
}

.selector-vehicle-card.has-warning {
    border-color: var(--bs-warning-border-subtle);
}

.vehicle-capacity-warning {
    background: var(--bs-warning-border-subtle);
    padding: 15px 20px;
    margin: 0;
    border-radius: 2px;
}

.vehicle-capacity-warning>div {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vehicle-capacity-warning .warning-title,
.vehicle-capacity-warning .warning-details {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: -.01rem;
    white-space: nowrap;
}

.vehicle-capacity-warning .warning-details strong {
    font-weight: 700;
}

.selector-vehicle-img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

.selector-vehicle-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 8px 0;
}

.selector-vehicle-capacity {
    display: flex;
    gap: 15px;
    font-size: .85rem;
    color: var(--gray-400);
}

.selector-vehicle-capacity span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.selector-vehicle-price {
    font-size: .9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.selector-vehicle-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
}

.vehicle-price-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.price-display {
    text-align: right;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
}

.price-display .price-currency {
    font-size: 14px;
    color: var(--gray-400);
    margin-right: 5px;
}

.selector-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-selector-minus,
.btn-selector-plus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    font-size: 1.1rem;
}

.btn-selector-minus:hover:not(:disabled),
.btn-selector-plus:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-selector-minus:disabled {
    opacity: .3;
    cursor: not-allowed;
    border-color: var(--gray-300);
    color: var(--gray-300);
}

.selector-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    min-width: 30px;
    text-align: center;
}

.selector-summary {
    background: var(--white);
    border-radius: 2px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--primary-20);
}

.selector-actions {
    background: var(--white);
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.selector-actions .btn {
    flex: 1;
}

@media (max-width: 767.98px) {
    .selector-actions {
        flex-direction: column;
        gap: 10px;
    }

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

.summary-details {
    display: flex;
    gap: 30px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .95rem;
    color: var(--gray-400);
}

.summary-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.summary-item strong {
    color: var(--dark-color);
}

.summary-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.summary-price span {
    font-size: .85rem;
    color: var(--gray-400);
}

.summary-price strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-confirm-selection {
    padding: 12px 30px;
    font-weight: 600;
}

.vehicle-card {
    background: white;
    border-radius: 2px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: visible;
}

.vehicle-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px var(--primary-20);
}

.vehicle-card.selected {
    border: 1px solid transparent;
    position: relative;
}

.btn-price-details {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-price-details:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

@keyframes snakeBorderBorder {
    0% {
        background-position: 0% 50%;
    }

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.custom-card {
    background: white;
    border-radius: 2px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-20);
    position: relative;
    overflow: visible;
}

.custom-card:hover {
    border-color: var(--gray-200);
    box-shadow: 0 4px 16px var(--primary-20);
}

.custom-card.selected {
    border: 1px solid transparent;
    background: rgba(57, 91, 101, 0.02);
    position: relative;
}

.custom-card.selected::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2px;
    padding: 1px;
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--secondary-color) 25%, var(--primary-color) 50%, var(--secondary-color) 75%, var(--primary-color) 100%);
    background-size: 300% 100%;
    background-position: 0% 50%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: snakeBorderBorder 10s linear infinite;
    pointer-events: none;
    border-radius: inherit;
}

.ribbons-wrapper {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 10;
    top: 0;
    left: 0px;
    z-index: 10;
    top: 0;
    left: 0px;
    z-index: 10;
    top: 0;
    left: 0px;
    z-index: 10;
}

.ribbon1 {
    position: absolute;
    top: -6.1px;
    left: 0;
}

.ribbon1:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 10px solid #00bb07;
}

.ribbon1 span {
    position: relative;
    display: block;
    text-align: center;
    background: #00bb07;
    font-size: .9rem;
    line-height: 1.3rem;
    padding: 15px 8px 5px;
    border-top-left-radius: 8px;
    width: 70px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

.ribbon1 span:before,
.ribbon1 span:after {
    position: absolute;
    content: "";
}

.ribbon1 span:before {
    height: 6px;
    width: 6px;
    right: -6px;
    top: 0;
    background: #00bb07;
}

.ribbon1 span:after {
    height: 6px;
    width: 8px;
    right: -8px;
    top: 0;
    border-radius: 8px 8px 0 0;
    background: #00bb07;
}

.vehicle-image {
    width: 250px;
    height: 150px;
    object-fit: contain;
    object-position: bottom left;
    flex-shrink: 0;
}

.vehicle-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vehicle-price-large {
    display: flex;
    align-items: flex-end;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
    margin-left: auto;
}

.vehicle-price-large .price-symbol {
    font-size: 2rem;
    margin-right: 0px;
    align-self: flex-start;
    margin-top: 5px;
    font-weight: 400;
}

.vehicle-price-large .price-amount {
    font-size: 4rem;
    letter-spacing: -0.05em;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
}

.price-amount.price-flip {
    animation: priceFlip 0.3s ease;
}

.price-amount.price-pulse {
    animation: pricePulse 0.6s ease;
}

.sidebar-vehicle-price-amount.price-flip {
    animation: priceFlip 0.3s ease;
}

.sidebar-vehicle-price-amount.price-pulse {
    animation: pricePulse 0.6s ease;
}

@keyframes priceFlip {
    0% {
        transform: rotateX(0deg);
        opacity: 1;
    }

    50% {
        transform: rotateX(90deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes pricePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
        color: var(--primary-color);
        text-shadow: 0 0 20px var(--primary-30);
    }

    100% {
        transform: scale(1);
    }
}

.vehicle-price-large .price-decimals {
    font-size: 1.5rem;
    margin-bottom: 5px;
    opacity: 0.75;
    font-weight: 400;
    letter-spacing: -.04rem;
}

.vehicle-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vehicle-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -.03rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.vehicle-badge {
    background: var(--danger-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.vehicle-badge.top-class {
    background: var(--yellow);
    color: var(--dark-gray);
}

.vehicle-capacity {
    display: flex;
    gap: 15px;
    color: var(--primary-color);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: -.03rem;
}

.vehicle-capacity i {
    margin-right: .15rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.vehicle-description {
    color: var(--primary-color);
    font-size: .85rem;
    line-height: 1.2;
    letter-spacing: -.02rem;
    font-weight: 400;
}

.vehicle-alternatives {
    margin-top: 10px;
    padding: 10px;
    background: var(--gray-50);
    border-radius: 6px;
    font-size: 13px;
    color: var(--gray-400);
}

.vehicle-alternatives strong {
    color: var(--primary-color);
}

.vehicles-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: var(--primary-color);
    font-size: .85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .03rem;
}

.vehicles-divider::before,
.vehicles-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--primary-color);
}

.vehicles-divider span {
    padding: 0 20px;
}

.vehicle-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
}

.price-original {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 14px;
}

.price-current {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-currency {
    font-size: 18px;
}

.price-note {
    font-size: 12px;
    color: var(--gray-400);
}

.round-trip-banner {
    background: var(--primary-color);
    border-radius: 2px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
    box-shadow: 0 2px 8px var(--black-10);
}

.round-trip-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.round-trip-icon i {
    font-size: 24px;
    color: var(--white);
}

.round-trip-text {
    flex: 1;
}

.round-trip-text h5 {
    margin: 0 0 5px;
    font-size: 0.95rem !important;
    font-weight: 500;
    color: var(--white);
    letter-spacing: .015rem !important;
}

.round-trip-text p {
    margin: 0;
    font-size: .85rem !important;
    color: var(--white);
    opacity: 0.9;
    letter-spacing: -.01rem !important;
}

.round-trip-form {
    background: white;
    border-radius: 2px;
    padding: 20px;
    margin: 0 0 10px;
    animation: slideDown 0.3s ease;
    border: 1px solid var(--primary-20);
}

.round-trip-form .btn-primary,
.round-trip-form .btn-outline-danger,
.custom-selection-wrapper .btn-primary,
.booking-footer .btn-primary,
.multiple-vehicles-section .btn-primary,
.multiple-vehicles-section .btn-outline-danger {
    padding: 15px 10px;
    border-radius: 2px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .03rem;
    font-weight: 500;
}

.round-trip-form .btn-primary,
.custom-selection-wrapper .btn-primary,
.booking-footer .btn-primary,
.multiple-vehicles-section .btn-primary,
.multiple-vehicles-section .btn-outline-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.round-trip-form .btn-primary:hover,
.custom-selection-wrapper .btn-primary:hover,
.booking-footer .btn-primary:hover,
.multiple-vehicles-section .btn-primary:hover,
.multiple-vehicles-section .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.round-trip-form .btn-outline-danger,
.multiple-vehicles-section .btn-outline-danger {
    background-color: transparent;
    border-color: var(--danger-color);
    color: var(--danger-color);
}

.round-trip-form .btn-outline-danger:hover,
.multiple-vehicles-section .btn-outline-danger:hover {
    background-color: var(--danger-color);
    border-color: var(--danger-color);
    color: var(--white);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.booking-sidebar {
    background: var(--white);
    border-radius: 2px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid var(--primary-30);
}

.booking-sidebar .sidebar-title {
    padding: 0;
    margin-bottom: 10px;
}

.booking-sidebar .sidebar-title h4 {
    font-size: 1rem;
    letter-spacing: -.02rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.booking-journey {
    border-bottom: 1px solid var(--gray-50);
}

.journey-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.journey-header span {
    font-size: 14px;
    color: var(--gray-400);
}

.btn-edit {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

.journey-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.journey-location {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.journey-location i {
    color: var(--danger-color);
    font-size: 18px;
    margin-top: 2px;
}

.journey-location strong {
    display: block;
    color: var(--primary-color);
    font-size: 15px;
    margin-bottom: 3px;
}

.journey-location small {
    display: block;
    color: var(--primary-color);
    font-size: .85rem;
    letter-spacing: -.02rem;
    font-weight: 500;
}

.journey-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: var(--gray-50);
    border-radius: 8px;
}

.free-cancellation {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: var(--success-light);
    border-radius: 0.5rem;
    margin: 1rem 0;
    border: 1px solid var(--success-light);
    transition: all 0.3s ease;
}

.free-cancellation.policy-100 {
    background: var(--success-light);
    border-color: var(--success-light);
}

.free-cancellation.policy-85 {
    background: var(--warning-color);
    border-color: var(--warning-color);
}

.free-cancellation.policy-no {
    background: var(--danger-color);
    border-color: var(--danger-color);
}

.whats-included,
.booking-vehicle-selected {
    border-bottom: 1px solid var(--gray-50);
    padding: 10px;
    margin: 10px 0;
}

.free-cancellation i {
    color: var(--white);
    font-size: 1.25rem;
}

.cancel-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cancel-line-1 {
    font-weight: 700;
    font-size: 1rem;
}

.cancel-line-2 {
    font-size: 0.9rem;
    padding-left: 2rem;
}

.cancellation-title {
    color: var(--white);
    font-weight: 700;
}

.cancellation-text {
    color: var(--white);
}

.cancel-link {
    color: var(--white);
    text-decoration: underline;
    margin-left: 0.5rem;
}

.free-cancellation span {
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .02rem;
}

.success-cancellation-notice {
    background: #d4edda;
    border: none;
    border-radius: 0.375rem;
    padding: 1rem 1.25rem;
    display: block;
    transition: all 0.3s ease;
}

.success-cancellation-notice.policy-100 {
    background: #d4edda;
}

.success-cancellation-notice.policy-85 {
    background: #d1ecf1;
}

.success-cancellation-notice.policy-no {
    background: #f8d7da;
}

.cancellation-notice-icon {
    display: none;
}

.cancellation-notice-text {
    font-size: .9rem;
    line-height: 1.4;
    color: #155724;
    font-weight: 400;
    margin: 0;
    letter-spacing: -.02rem;
}

.success-cancellation-notice.policy-100 .cancellation-notice-text {
    color: #155724;
}

.success-cancellation-notice.policy-85 .cancellation-notice-text {
    color: #0c5460;
}

.success-cancellation-notice.policy-no .cancellation-notice-text {
    color: #721c24;
}

.cancellation-notice-text strong {
    font-weight: 700;
}

.cancel-manage-btn {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.25rem 0.75rem;
    color: #155724;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.cancel-manage-btn:hover {
    opacity: 0.85;
}

.success-cancellation-notice.policy-85 .cancel-manage-btn {
    color: #0c5460;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-gray);
}

.included-list li i {
    color: var(--success-color);
    margin-right: 8px;
}

.extras-section {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 18px var(--black-05);
    margin-top: 20px;
}

.supplements-hidden {
    display: none;
}

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

.supplement-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.supplement-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.supplement-info i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.supplement-name {
    font-size: .9rem;
    color: var(--dark-color);
    font-weight: 500;
}

.supplement-price {
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.no-supplements {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: var(--gray-50);
    border-radius: 8px;
    color: var(--gray-400);
    font-size: .9rem;
}

.no-supplements i {
    font-size: 1.1rem;
}

.booking-selection-summary {
    background: var(--white);
    border-radius: 2px;
    margin: 15px 0 0;
}

.summary-capacity {
    padding: 25px 30px 20px;
}

.capacity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.capacity-item i {
    font-size: 18px;
    color: var(--text-secondary);
}

.capacity-item span {
    color: var(--text-secondary);
}

.capacity-item strong {
    font-size: 16px;
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0 30px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 16px;
}

.summary-total>span {
    color: var(--text-secondary);
    font-weight: 500;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 transparent);
    }

    5% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    }

    10% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 transparent);
    }

    15% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    }

    20% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 transparent);
    }

    25% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    }

    30%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 transparent);
    }
}

.pulse-animation {
    animation: pulse 8s ease-in-out infinite;
}

.btn-valid {
    background-color: var(--success-color) !important;
    border-color: var(--success-color) !important;
    color: var(--white) !important;
}

.booking-selection-summary .btn {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    font-weight: 600;
    border-radius: 8px;
}

.btn-gray {
    background: var(--gray-500);
    color: var(--white);
    border: none;
}

.btn-gray:hover {
    background: var(--gray-900);
    color: var(--white);
}

.btn-primary-light {
    background: var(--primary-light);
    color: var(--dark-color);
    border: none;
}

.btn-primary-light:hover {
    background: var(--primary-color);
    color: var(--white);
}

.booking-footer-old {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-top: 2px solid var(--primary-color);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-top: 2px solid var(--primary-color);
}

.footer-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: -.01rem;
    color: var(--primary-color);
    margin-bottom: -5px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.info-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

.footer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.autocomplete-no-results {
    cursor: default;
    pointer-events: none;
}

.autocomplete-no-results .autocomplete-icon {
    color: var(--gray-400);
}

.autocomplete-no-results .autocomplete-label {
    color: var(--gray-400);
    font-style: italic;
}

.debug-section {
    display: none;
}

#debug {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.8;
}

.debug-filiale-scelta {
    background: #d4edda;
    padding: 10px;
    border-radius: 5px;
}

.price-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

#btn-confirm-selection {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    padding: 20px 40px;
    font-weight: 600;
    border-radius: 0 0 2px 2px;
    transition: all 0.3s ease;
    color: var(--white) !important;
    font-size: 1.2rem;
    letter-spacing: .03rem;
    text-transform: uppercase;
}

#btn-confirm-selection:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.selector-vehicle-card.selected-custom,
.vehicle-card.selected {
    --card-bg-color: #ffffff;
    border: 1px solid transparent !important;
    background:
        linear-gradient(var(--card-bg-color), var(--card-bg-color)) padding-box,
        linear-gradient(120deg, var(--primary-color) 0%, var(--secondary-color) 25%, var(--primary-color) 50%, var(--secondary-color) 75%, var(--primary-color) 100%) border-box;
    background-size: 100% 100%, 300% 100%;
    background-position: 0 0, 0% 50%;
    animation: snakeBorder 10s linear infinite;
    position: relative;
}

.selector-vehicle-card.selected-custom.has-warning {
    border: 1.5px solid transparent !important;
    box-shadow: 0 0 0 3px var(--warning-color), 0 4px 16px rgba(255, 193, 7, 0.3);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.selector-vehicle-card.selected-custom.has-warning::before {
    background: linear-gradient(90deg, var(--bs-warning-border-subtle), #ffc107, var(--bs-warning-border-subtle));
}

.custom-selection-wrapper {
    margin-bottom: 100px;
}

.custom-selection-header {
    margin-bottom: 30px;
}

.custom-selection-header h3 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.custom-confirmed-card {
    margin-bottom: 15px;
}

.custom-selection-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--gray-50);
    border-radius: 12px;
    margin-top: 25px;
    border: 1px solid var(--gray-200);
}

.custom-selection-summary .summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.custom-selection-summary .summary-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.custom-selection-summary .summary-item strong {
    color: var(--dark-color);
    font-weight: 700;
}

.custom-selection-summary .summary-total {
    display: flex;
    align-items: center;
    gap: 15px;
}

.selected-vehicle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.selected-vehicle i {
    font-size: 24px;
    color: var(--primary-color);
}

.selected-vehicle strong {
    color: var(--primary-color);
}

.btn-booking-continue {
    background-color: var(--secondary-color) !important;
    border: none !important;
    padding: 20px 25px 20px 40px;
    font-weight: 600;
    border-radius: 0 0 2px 2px;
    transition: all 0.3s ease;
    color: var(--white) !important;
    font-size: 1.2rem;
    letter-spacing: .03rem;
    text-transform: uppercase;
}

.btn-booking-continue:hover {
    background-color: var(--primary-color) !important;
    opacity: 0.9;
    border: none !important;
}

.btn-booking-continue:disabled {
    background: var(--gray-400) !important;
    cursor: not-allowed;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .booking-selection-page {
        margin: 0;
    }

    .vehicle-selector-grid {
        grid-template-columns: 1fr;
    }

    .selector-vehicle-card {
        flex-direction: column;
        text-align: center;
    }

    .selector-vehicle-img {
        width: 100%;
        max-width: 200px;
    }

    .vehicle-price-selector {
        margin-left: 0;
        width: 100%;
    }

    .ribbon1 {
        top: -4px;
        left: -5px;
        transform: scale(0.7);
        transform-origin: top left;
    }

    .summary-details {
        flex-direction: column;
        gap: 10px;
    }

    .selector-summary {
        flex-direction: column;
        align-items: stretch;
    }

    .summary-price {
        align-items: flex-start;
    }

    .booking-stepper {
        padding: 20px 10px;
    }

    .stepper-label {
        font-size: 12px;
    }

    .stepper-line {
        width: 40px;
    }

    .vehicle-card {
        flex-direction: column;
    }

    .vehicle-image {
        width: 100%;
        height: 150px;
    }

    .booking-footer {
        padding: 15px 0;
    }

    .booking-footer .row {
        flex-direction: column;
        gap: 15px;
    }

    .booking-footer .col-md-4 {
        text-align: center !important;
    }

    .footer-info {
        justify-content: center;
        gap: 20px;
    }

    .info-item {
        font-size: 0.85rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    #btn-confirm-selection {
        width: 100%;
        padding: 12px 20px;
    }

    .vehicle-price {
        align-items: flex-start;
    }

    .booking-sidebar {
        position: static;
    }

    .custom-vehicles-list {
        grid-template-columns: 1fr;
    }

    .custom-vehicle-item {
        flex-direction: column;
        text-align: center;
    }

    .custom-vehicle-item img {
        width: 100%;
        height: 120px;
    }

    .custom-selection-card {
        padding: 20px;
        margin-bottom: 80px;
    }

    .custom-selection-wrapper {
        margin-bottom: 80px;
    }

    .custom-selection-summary {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 20px;
    }

    .custom-selection-summary .summary-total {
        width: 100%;
        text-align: center;
        padding-top: 15px;
        border-top: 2px solid var(--gray-200);
    }
}

/* Success Page - Veicoli Display */
#selected-vehicles-display {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.success-vehicles-section {
    margin: 30px 0;
}

.success-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: -.05rem;
}

.success-vehicle-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.success-vehicle-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.success-vehicle-image {
    width: 160px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
}

.success-vehicle-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.success-vehicle-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-vehicle-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -.03rem;
}

.success-vehicle-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.success-vehicle-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.success-vehicle-meta i {
    margin-right: 6px;
    color: var(--primary-color);
}

/* Success Page - Extra */
.success-extras-card {
    margin-top: 30px;
    padding: 24px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.success-extras-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-extras-title i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.success-extras-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.success-extra-item {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
}

.success-extra-name {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.success-extra-count {
    background: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Success Page - Animazioni */
.success-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.success-scale-in {
    animation: scaleIn 0.8s ease-out;
}

.success-check-container {
    display: inline-block;
    position: relative;
    width: 110px;
    height: 110px;
}

.success-check-icon {
    font-size: 6rem;
    color: var(--success-color, #28a745);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.success-check-pulse {
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border: 3px solid var(--success-color, #28a745);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.success-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 2rem;
    letter-spacing: -.06rem;
}

.success-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    letter-spacing: -.04rem;
    margin: -20px 0;
}

.success-booking-badge {
    background: var(--primary-60);
    padding: 10px 20px;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.success-booking-label {
    color: white;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
    letter-spacing: .01rem;
}

.success-booking-number {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: .03rem;
}

.success-email-text {
    color: var(--text-muted);
}

.success-next-steps {
    border-top: 2px solid var(--border-color);
}

.success-next-title {
    font-weight: 600;
}

.success-step-card {
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.success-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.success-step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.success-step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color, #6c757d) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-step-icon i {
    font-size: 1.8rem;
    color: white;
}

.success-step-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.success-step-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.success-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f8f9fa 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.success-info-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-info-icon i {
    font-size: 1.6rem;
    color: white;
}

.success-info-content {
    flex: 1;
}

.success-info-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.success-info-text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.success-thank-you {
    text-align: center;
    padding: 30px 30px 4px;
    background: var(--primary-70);
    border-radius: 2px;
    margin-top: 20px;
}

.success-thank-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.success-thank-text {
    font-size: 1.05rem;
    color: white;
    opacity: 0.95;
    margin: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
    .success-vehicle-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
    }

    .success-vehicle-image {
        width: 100%;
        height: 140px;
    }

    .success-vehicle-meta {
        flex-wrap: wrap;
        gap: 16px;
    }

    .success-extras-list {
        grid-template-columns: 1fr;
    }

    .success-extras-card {
        padding: 20px;
    }

    .success-check-container {
        width: 90px;
        height: 90px;
    }

    .success-check-icon {
        font-size: 4.5rem;
    }

    .success-check-pulse {
        width: 100px;
        height: 100px;
    }

    .success-booking-number {
        font-size: 1.5rem;
    }
}

.passenger-card,
.extras-card {
    background: var(--white);
    border-radius: 2px;
    padding: 2rem;
    box-shadow: 0 2px 8px var(--primary-10);
    border: 1px solid var(--primary-30);
    margin-bottom: 1.5rem;
}

.passenger-card h2,
.extras-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -.02rem;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 0;
}

.flight-route-animation {
    background: var(--accent-10);
    border-radius: 4px;
    margin: 10px 0 20px;
    padding: 25px 20px 20px;
    position: relative;
}

.flight-route-animation .flight-refresh-btn {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color) !important;
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.flight-route-animation .flight-refresh-btn:hover {
    background: var(--danger-color) !important;
    transform: scale(1.1);
}

.flight-route-animation .flight-refresh-btn i {
    font-size: 1rem;
}

.flight-route-animation .flight-refresh-btn.spinning {
    background: var(--danger-color) !important;
    transform: scale(1.1);
}

.flight-route-animation .flight-refresh-btn.spinning i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.flight-route-animation .flight-status-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.flight-route-animation .flight-status-badge .flight-status {
    font-size: 0.8rem;
    padding: 4px 10px 3px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .02rem;
}

.flight-route-animation .route-container {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.flight-route-animation .airport-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.flight-route-animation .airport-info:last-child {
    align-items: flex-end;
    min-width: 80px;
}

.flight-route-animation .city-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.flight-route-animation .city {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    white-space: nowrap;
    display: block;
}

.flight-route-animation .time {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 4px;
    display: block;
}

.flight-route-animation .time del {
    color: var(--gray-400);
    text-decoration: line-through;
    margin-right: 5px;
}

.flight-route-animation .delay {
    font-size: 0.7rem;
    color: var(--danger-color);
    font-weight: 600;
    white-space: nowrap;
}

.flight-route-animation .timezone {
    font-size: 0.65rem;
    color: var(--gray-500);
    font-weight: 500;
    display: block;
    margin-top: 2px;
    text-transform: uppercase;
}

.flight-route-animation .route-line {
    flex: 1;
    height: 2px;
    background: var(--gray-300);
    position: relative;
    margin-top: 35px;
}

.flight-route-animation .route-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary-color);
    width: var(--progress, 0%);
    transition: width 2s ease-out;
}

@keyframes line-progress {
    from {
        width: 0%;
    }

    to {
        width: var(--progress, 0%);
    }
}

.flight-route-animation .route-line.arrived::before {
    background: var(--success-color);
}

.flight-route-animation .route-line.arrived.late::before {
    background: var(--danger-color);
}

.flight-route-animation .route-line.delayed::before {
    background: var(--warning-color);
}

.flight-route-animation .route-line.cancelled::before {
    background: var(--danger-color);
}

.flight-route-animation .plane-icon {
    position: absolute;
    top: 50%;
    left: var(--progress, 0%);
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
    font-size: 0.9rem;
    color: var(--primary-color);
    background: rgb(237 237 237);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 2s ease-out;
}

@keyframes plane-fly {
    from {
        left: 0%;
    }

    to {
        left: var(--progress, 0%);
    }
}

.flight-route-animation .plane-icon.cancelled {
    opacity: 0.5;
}

.flight-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
}

.flight-status.scheduled {
    background: var(--info-color);
    color: var(--white);
}

.flight-status.on-time {
    background: var(--success-color);
    color: var(--white);
}

.flight-status.delayed {
    background: var(--danger-color);
    color: var(--white);
}

.flight-status.cancelled {
    background: var(--danger-color);
    color: var(--white);
}

.flight-status.departed {
    background: var(--primary-color);
    color: var(--white);
}

.flight-status.arrived {
    background: var(--success-light);
    color: var(--white);
}

.booking-input-body {
    position: relative;
}

.booking-input-body .error-icon {
    position: absolute;
    right: 15px;
    top: -5px;
    color: var(--danger-color);
    font-size: 1.2rem;
    z-index: 10;
    pointer-events: none;
}

.booking-input-label .set-today-icon {
    color: var(--primary-color);
    font-size: 0.6rem;
    cursor: pointer;
    margin-left: 8px;
    transition: color 0.2s;
}

.booking-input-label .set-today-icon:hover {
    color: var(--primary-dark);
    animation: spin 1s linear infinite;
}

.booking-input-body:has(textarea) .error-icon {
    top: 12px;
}

.booking-input-body.has-error .error-icon {
    animation: blink-error 0.5s ease-in-out infinite;
}

@keyframes blink-error {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.phone-input-group {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.phone-input-group .custom-dropdown {
    flex: 0 0 110px;
    position: relative;
}

.phone-dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
    left: 0 !important;
    right: auto !important;
    width: 300px !important;
}

.dropdown-search {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
    z-index: 10;
}

.dropdown-search:hover {
    background: var(--white) !important;
}

.phone-search {
    border: 1px solid var(--gray-200) !important;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: .85rem;
    width: 100%;
}

.phone-search:focus {
    border-color: var(--primary-color) !important;
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-20);
}

.phone-input-group .custom-dropdown::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-color);
    font-size: .8rem;
}

.phone-prefix {
    border: none !important;
    background: transparent;
    padding: 0;
    padding-right: 1.2rem;
    font-size: .9rem;
    width: 100%;
}

.phone-number {
    flex: 1;
    border: none !important;
    background: transparent;
    padding: 0;
}

.notifications-card {
    padding: 1rem !important;
}

.notification-option {
    margin-bottom: 1rem;
}

.notification-option:last-child {
    margin-bottom: 0;
}

.notification-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 1rem 0;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.notification-header i {
    font-size: 1.2rem;
}

.notification-header h4 {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
}

.notification-header .badge {
    font-size: .65rem;
    padding: 0.25rem 0.5rem;
    font-weight: 600;
}

.notification-header .form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.notification-header label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    cursor: pointer;
    flex: 1;
}

.notification-desc {
    font-size: .8rem;
    color: var(--text-secondary);
    margin: 0;
    padding-left: 2.2rem;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .booking-sidebar {
        margin-top: 10px;
    }
}

@media (max-width: 991px) {

    .passenger-card,
    .extras-card {
        padding: 1.5rem;
    }

    .phone-input-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .phone-prefix {
        flex: 1;
    }

    .notification-desc {
        padding-left: 0;
        margin-top: 0.5rem;
    }
}

.dashboard-container {
    min-height: calc(100vh - 120px);
    background: #f8f9fa;
    padding: 0;
    margin-top: 120px;
    display: flex;
}

.dashboard-sidebar {
    background: var(--white);
    width: 250px;
    min-width: 250px;
    border-right: 1px solid #e9ecef;
    padding: 2rem 0;
    min-height: calc(100vh - 120px);
    position: sticky;
    top: 120px;
    height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-header {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.sidebar-header h5 {
    font-size: 11px;
    color: #6c757d;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.sidebar-header p {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-menu li a:hover {
    background: var(--gray-50);
    color: var(--primary-color);
}

.sidebar-menu li.active a {
    background: var(--primary-light);
    color: var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.sidebar-menu li a i {
    font-size: 18px;
    width: 20px;
}

.dashboard-content {
    flex: 1;
    padding: 2rem 3rem;
    max-width: 100%;
    overflow-x: hidden;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px;
}

.dashboard-header p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

.dashboard-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.dashboard-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.dashboard-card .card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-card .card-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.dashboard-card .card-body {
    padding: 0;
}

.bookings-list {
    display: flex;
    flex-direction: column;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s;
}

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

.booking-item:hover {
    background: var(--gray-50);
}

.booking-info {
    flex: 1;
}

.booking-code {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.booking-code strong {
    font-size: 16px;
    color: var(--text-color);
}

.booking-code .badge {
    font-size: 11px;
    padding: 4px 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-route {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--gray-700);
    font-size: 14px;
}

.booking-route i.bi-geo-alt {
    color: var(--primary-color);
}

.booking-route i.bi-arrow-right {
    color: var(--gray-400);
    font-size: 12px;
}

.booking-details {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray-600);
}

.booking-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.booking-details i {
    font-size: 14px;
}

.booking-price {
    text-align: right;
}

.booking-price strong {
    font-size: 18px;
    color: var(--primary-color);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .dashboard-container {
        margin-top: 80px;
    }

    .dashboard-sidebar {
        display: none;
    }

    .dashboard-content {
        padding: 1.5rem 1rem;
        width: 100%;
    }

    .dashboard-header h1 {
        font-size: 24px;
    }

    .dashboard-header p {
        font-size: 14px;
    }

    .dashboard-card {
        border-radius: 12px;
    }

    .booking-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
    }

    .booking-price {
        text-align: left;
        width: 100%;
    }

    .booking-details {
        font-size: 13px;
    }

    .booking-code {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

#menuOffcanvas {
    background: var(--white);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

#menuOffcanvas.show {
    opacity: 1;
}

#menuOffcanvas.offcanvas-lg-top {
    --bs-offcanvas-height: auto !important;
    height: fit-content !important;
    min-height: 0 !important;
    max-height: none !important;
    width: calc(100% - 10.6rem) !important;
    margin-left: 5.3rem;
    margin-right: 5.3rem;
    padding: 0 !important;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(-1.5rem);
    opacity: 0;
    overflow: visible !important;
    display: block !important;
    flex: none !important;
    border: 0;
}

.offcanvas-body {
    position: relative;
    display: block;
    padding: 2rem 0;
    min-height: auto;
    height: auto;
    flex: none;
    overflow: visible !important;
    transition: background 0.3s ease;
}

.offcanvas-body.mega-menu-active {
    background: var(--primary-color);
}

.offcanvas-close-floating {
    position: absolute;
    top: auto;
    right: -1.75rem;
    bottom: -1.75rem;
    transform: none;
    background: var(--black);
    border: 1px solid transparent;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 21400;
    opacity: 1;
    background-image: none;
    font-size: 1rem;
    line-height: 1;
}

.offcanvas-close-floating:hover {
    background: var(--danger-color);
    color: var(--white);
    border-color: var(--danger-color);
}

.auth-container {
    animation: auth-pop 0.45s ease;
    padding: .5rem 0 2rem;
    width: 100%;
}

.auth-container .booking-input-card,
.auth-container .btn.auth-primary,
.auth-container .d-flex.justify-content-between {
    animation: auth-fade-up 0.5s ease both;
}

@keyframes auth-pop {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes auth-fade-up {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.offcanvas-close-floating::before {
    content: "×";
    line-height: 1;
    font-weight: 700;
}

.edit-modal-open .booking-input-card,
.edit-modal-open .booking-input-body input,
.edit-modal-open .booking-input-body .form-control,
.edit-modal-open .booking-input-body .dropdown-input,
.edit-modal-open .radio-card {
    pointer-events: none;
}

.edit-modal-open .booking-input-body .auth-toggle-password {
    pointer-events: none;
}

.modal {
    z-index: 20000;
}

.modal-backdrop {
    z-index: 19990;
}

@media (min-width: 992px) {
    #menuOffcanvas.offcanvas-lg-top.show {
        transform: translateY(0);
        opacity: 1;
    }

    #menuOffcanvas.offcanvas-lg-top.hiding {
        transform: translateY(-16px);
        opacity: 0;
    }

    .auth-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }

    #offcanvas-auth-section,
    #offcanvas-reset-section,
    #offcanvas-login-section {
        padding: 0;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
}

#offcanvas-auth-section,
#offcanvas-reset-section,
#offcanvas-login-section {
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#offcanvas-auth-section .auth-container {
    max-width: 900px;
    width: 100%;
}

#offcanvas-reset-section .auth-container {
    max-width: 780px;
    width: 100%;
}

#offcanvas-login-section .auth-container {
    max-width: 780px;
    width: 100%;
}

.auth-evaporate {
    animation: auth-evaporate 0.35s ease forwards;
}

@keyframes auth-evaporate {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.auth-header {
    margin-bottom: 18px;
}

.auth-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.auth-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.auth-subtitle {
    font-size: 0.95rem;
    color: #404040;
    margin: 0;
    letter-spacing: -.02rem;
}

.auth-password-group .booking-input-body {
    gap: 0.5rem;
    align-items: center;
}

.auth-toggle-password {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color) !important;
    text-decoration: none;
    font-size: .8rem;
    padding: 0;
}

.auth-toggle-password:hover {
    color: var(--black);
}

.auth-radio-group {
    margin: 1.5rem 0;
}

.radio-card {
    position: relative;
    border: 1px solid var(--gray-300);
    border-radius: 3px;
    padding: 14px 18px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.15s ease;
}

.radio-card label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    font-weight: 600;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-card:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.radio-card:has(input[type="radio"]:checked) label {
    color: var(--white);
}

.radio-card:has(input[type="radio"]:checked) i {
    color: var(--white);
}

.radio-card:hover {
    border-color: var(--primary-color);
}

.auth-primary {
    background: var(--white);
    color: var(--primary-color);
    border-radius: 3px;
    padding: 1rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    border: 1px solid var(--primary-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-transform: uppercase;
}

.auth-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    animation: auth-bounce 0.4s ease;
}

.auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 12px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--primary-lighter);
}

.auth-social-btn {
    border: 1px solid var(--primary-lighter);
    border-radius: 3px;
    padding: 1rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-fast);
    letter-spacing: .025rem;
    text-transform: uppercase;
}

.auth-social-btn:hover {
    border-color: var(--primary-color);
    animation: auth-bounce 0.4s ease;
}

.auth-google {
    color: var(--primary-color);
}

.auth-apple {
    color: var(--black);
}

.mega-menu-body {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
}

@media (min-width: 992px) {
    .mega-menu-body {
        padding-left: 5.3rem;
        padding-right: 5.3rem;
    }
}

.mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mega-menu-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.mega-menu-logo img {
    max-width: 180px;
    height: auto;
}

@media (min-width: 992px) {
    .mega-menu-container {
        margin-left: 5.3rem;
        margin-right: 5.3rem;
    }
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.mega-col {
    padding: 0;
}

.mega-col-title {
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: 1rem;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li+li {
    margin-top: 0.35rem;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.1rem 0.75rem;
    border-radius: 0.4rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.3rem;
    position: relative;
}

.mega-menu-link i {
    font-size: 1rem;
    color: var(--white);
    transition: transform 0.25s ease, color 0.2s ease;
}

.mega-menu-link:hover {
    color: var(--white);
    font-weight: 600;
}

.mega-menu-link:hover i {
    color: var(--white);
    transform: scale(1.2);
}

.mega-menu-text {
    position: relative;
    display: inline-block;
}

.mega-menu-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.08rem;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.mega-menu-link:hover .mega-menu-text::after {
    transform: scaleX(1);
}

.auth-logo {
    margin-bottom: 2rem;
}

.auth-logo img {
    max-width: 180px;
    height: auto;
}

.auth-form-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.auth-submit-btn {
    width: 100%;
}

.auth-footer {
    color: var(--primary-60);
    font-weight: 400;
    text-decoration: none;
    font-size: .8rem;
    position: relative;
}

.auth-login-link {
    color: var(--primary-60);
    font-weight: 400;
    text-decoration: none;
    font-size: .8rem;
    position: relative;
}

.auth-login-link:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.auth-login-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.1rem;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.auth-login-link:hover::after {
    transform: scaleX(1);
}

.content-appear {
    animation: contentAppear 0.55s ease-out forwards;
}

.content-evaporate {
    animation: contentEvaporate 0.9s ease forwards;
}

.offcanvas-slideDown {
    animation: slideDown 0.55s ease forwards;
}

.offcanvas-slideUp {
    animation: slideUp 0.9s ease forwards;
}

@keyframes contentAppear {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes contentEvaporate {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }

    100% {
        opacity: 0;
        transform: scale(0.97);
        filter: blur(4px);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

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

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

    to {
        transform: translateY(-100%);
    }
}

@keyframes auth-bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0);
    }
}