.hero-background {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 40px 8vw;
}

.hero-background {
        position: relative;
        background-image: url("../assets/rental-bg.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 70vh;
        width: 100%;
}

.hero-background::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
                        rgba(6, 33, 30, 0.88) 0%,
                        rgba(10, 26, 24, 0.72) 45%,
                        rgba(8, 20, 19, 0.85) 100%);
        z-index: 1;
}

.hero-background>* {
        position: relative;
        z-index: 2;
}

.status-card {
        background: #ffffff;
        width: 100%;
        max-width: 480px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
        overflow: hidden;
}

.status-card__body {
        padding: 32px 32px 28px;
}

.status-card__eyebrow {
        display: flex;
        align-items: center;
        justify-content: space-between;
}

.status-card__label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #0e9e78;
        font-size: 13px;
        letter-spacing: 0.08em;
        font-weight: 700;
}

.status-card__menu {
        color: #9a9a9a;
        letter-spacing: 2px;
        font-size: 16px;
}

.status-card__title {
        font-size: 24px;
        font-weight: 700;
        margin-top: 18px;
        color: #12181f;
}

.status-card__desc {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.6;
        color: #4a4f57;
}

.status-card__input {
        margin-top: 20px;
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #d8dbdf;
        background: #f7f8f9;
        font-family: inherit;
        font-size: 14px;
        color: #1c1c1c;
}

.status-card__input::placeholder {
        color: #a2a7ad;
}

.status-card__actions {
        margin-top: 16px;
        display: flex;
        gap: 12px;
}

.btn {
        flex: 1;
        padding: 14px 18px;
        font-family: inherit;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.04em;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: opacity 0.15s ease;
}

.btn:hover {
        opacity: 0.88;
}

.btn--primary {
        background: #10a37f;
        color: #ffffff;
}

.btn--secondary {
        background: #ffffff;
        color: #1c1c1c;
        border: 1px solid #d8dbdf;
}

.status-result {
        display: none;
        margin-top: 24px;
        padding-top: 22px;
        border-top: 1px dashed #d8dbdf;
}

.status-result.is-visible {
        display: block;
}

.status-result__row {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        margin-bottom: 10px;
        color: #4a4f57;
}

.status-result__row span:last-child {
        color: #12181f;
        font-weight: 700;
}

.status-pill {
        display: inline-block;
        padding: 4px 10px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
}

.status-pill--on_going {
        background: #e4f7f0;
        color: #0e9e78;
}

.status-pill--overdue_return {
        background: #fdeaea;
        color: #c0392b;
}

.status-pill--pending {
        background: #fff4e0;
        color: #b8790a;
}

.email-invoice {
        margin-top: 18px;
}

.email-invoice__toggle {
        background: none;
        border: none;
        font-family: inherit;
        font-size: 13px;
        font-weight: 700;
        color: #10a37f;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 6px;
}

.email-invoice__form {
        display: none;
        margin-top: 14px;
        gap: 10px;
}

.email-invoice__form.is-visible {
        display: flex;
}

.email-invoice__input {
        flex: 1;
        padding: 12px 14px;
        border: 1px solid #d8dbdf;
        background: #f7f8f9;
        font-family: inherit;
        font-size: 13px;
}

.email-invoice__submit {
        padding: 12px 16px;
        background: #12181f;
        color: #ffffff;
        border: none;
        font-family: inherit;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
}

.email-invoice__note {
        margin-top: 10px;
        font-size: 12px;
        color: #7a7f86;
        display: none;
}

.email-invoice__note.is-visible {
        display: block;
}

@media (max-width: 600px) {
        .hero-background {
                justify-content: center;
                padding: 24px;
        }

        .status-card__actions {
                flex-direction: column;
        }
}