:root {
    --bg: #0b0d10;
    --surface: #111419;
    --surface-light: #181c22;
    --border: #292e36;

    --text: #f4f5f7;
    --muted: #8e96a3;

    --accent: #ff5a1f;
    --accent-light: #ff7a4d;

    --green: #35d07f;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}


.page {
    max-width: 1500px;
    margin: auto;
    padding: 35px 45px 25px;
}


/* =========================
   HEADER
========================= */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}


.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}


.logo {
    width: 52px;
    height: 52px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 12px;

    background: var(--accent);

    font-size: 21px;
    font-weight: 800;

    letter-spacing: -1px;
}


.company-name {
    font-size: 20px;
    font-weight: 800;
}


.company-subtitle {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}


.internal-badge {
    padding: 7px 12px;

    border: 1px solid #444a54;
    border-radius: 7px;

    color: #aeb5bf;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================
   HERO
========================= */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    padding: 55px 0 40px;

    gap: 40px;
}


.eyebrow,
.section-eyebrow {
    color: var(--accent);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


h1 {
    font-size: clamp(38px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -3px;
}


.hero p {
    margin-top: 18px;

    color: var(--muted);

    font-size: 15px;
}


.hero p strong {
    color: var(--text);
}


.event-card {
    min-width: 290px;

    padding: 22px;

    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: 14px;

    position: relative;
    overflow: hidden;
}


.event-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: var(--accent);
}


.event-label {
    color: var(--muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


.event-name {
    margin-top: 7px;

    font-size: 21px;
    font-weight: 700;
}


.event-type {
    color: var(--muted);

    font-size: 13px;

    margin-top: 3px;
}


.event-date {
    margin-top: 18px;

    font-size: 12px;
    font-weight: 600;
}


/* =========================
   STATUS
========================= */

.status-bar {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border: 1px solid var(--border);
    border-radius: 13px;

    background: var(--surface);

    margin-bottom: 55px;
}


.status-item {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 20px 25px;

    border-right: 1px solid var(--border);
}


.status-item:last-child {
    border-right: none;
}


.status-item strong {
    display: block;

    font-size: 13px;
}


.status-item span:not(.status-dot):not(.status-icon) {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;
}


.status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--green);

    box-shadow: 0 0 12px rgba(53, 208, 127, .6);
}


.status-icon {
    font-size: 20px;
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 22px;
}


h2 {
    font-size: 28px;

    letter-spacing: -1px;
}


.legend {
    color: var(--muted);

    font-size: 11px;
}


.legend span {
    display: flex;
    align-items: center;

    gap: 8px;
}


.legend-color {
    width: 10px;
    height: 10px;

    display: inline-block;

    background: var(--accent);

    border-radius: 3px;
}


/* =========================
   TIMELINE
========================= */

.timeline-wrapper {
    overflow-x: auto;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: var(--surface);
}


.timeline-header,
.vehicle-row {
    display: grid;

    grid-template-columns: 260px minmax(700px, 1fr);
}


.timeline-header {
    min-width: 960px;

    background: #0e1115;

    border-bottom: 1px solid var(--border);
}


.vehicle-column {
    padding: 18px 20px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.days {
    display: grid;

    grid-template-columns: repeat(5, 1fr);
}


.day {
    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 12px 15px;

    border-left: 1px solid var(--border);
}


.day span {
    color: var(--muted);

    font-size: 9px;
    font-weight: 700;
}


.day strong {
    margin-top: 3px;

    font-size: 12px;
}


.vehicle-row {
    min-width: 960px;

    min-height: 82px;

    border-bottom: 1px solid var(--border);
}


.vehicle-row:last-child {
    border-bottom: none;
}


.vehicle-info {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px 20px;
}


.vehicle-icon {
    width: 40px;
    height: 40px;

    display: flex;

    justify-content: center;
    align-items: center;

    background: var(--surface-light);

    border: 1px solid var(--border);

    border-radius: 9px;

    font-size: 18px;
}


.vehicle-info strong {
    display: block;

    font-size: 13px;
}


.vehicle-info span {
    display: block;

    color: var(--muted);

    font-size: 10px;

    margin-top: 4px;
}


.timeline {
    position: relative;

    background-image:
        linear-gradient(
            to right,
            transparent 0%,
            transparent calc(20% - 1px),
            var(--border) 20%,
            transparent calc(20% + 1px),
            transparent calc(40% - 1px),
            var(--border) 40%,
            transparent calc(40% + 1px),
            transparent calc(60% - 1px),
            var(--border) 60%,
            transparent calc(60% + 1px),
            transparent calc(80% - 1px),
            var(--border) 80%,
            transparent calc(80% + 1px)
        );
}


/* =========================
   BOOKINGS
========================= */

.booking {
    position: absolute;

    top: 17px;
    bottom: 17px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 8px 13px;

    border-radius: 7px;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        #ff5a1f,
        #c63c0c
    );

    box-shadow:
        0 5px 20px rgba(255, 90, 31, .18);

    border: 1px solid rgba(255, 170, 130, .35);
}


.booking strong {
    font-size: 11px;

    white-space: nowrap;
}


.booking span {
    margin-top: 3px;

    font-size: 9px;

    color: rgba(255,255,255,.75);

    white-space: nowrap;
}


.booking-car {
    background: linear-gradient(
        135deg,
        #6d5dfc,
        #483bbd
    );
}


/* =========================
   DETAILS
========================= */

.details {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 25px;
}


.detail-card {
    display: flex;

    gap: 15px;

    padding: 22px;

    border: 1px solid var(--border);

    background: var(--surface);

    border-radius: 12px;
}


.detail-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    justify-content: center;
    align-items: center;

    background: var(--surface-light);

    border-radius: 8px;

    font-size: 17px;
}


.detail-card h3 {
    font-size: 13px;

    margin-bottom: 7px;
}


.detail-card p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================
   FOOTER
========================= */

footer {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-top: 50px;
    padding-top: 22px;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 10px;
}


footer strong {
    color: var(--text);
}


footer span {
    margin-left: 8px;
}


.footer-right strong {
    color: var(--green);

    margin-left: 5px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .page {
        padding: 25px 20px;
    }


    .hero {
        flex-direction: column;

        align-items: stretch;
    }


    .event-card {
        width: 100%;
    }


    .status-bar {
        grid-template-columns: 1fr;
    }


    .status-item {
        border-right: none;

        border-bottom: 1px solid var(--border);
    }


    .status-item:last-child {
        border-bottom: none;
    }


    .details {
        grid-template-columns: 1fr;
    }


    footer {
        flex-direction: column;

        gap: 12px;

        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .header {
        align-items: flex-start;
    }


    .company-subtitle {
        display: none;
    }


    .internal-badge {
        display: none;
    }

}