/* =========================
   JOB OPS DESIGN SYSTEM
========================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background: #0A0A0A;
    color: #F1EFE9;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}


/* =========================
   COLORS — JOB OPS
========================= */

:root {
--background: #0A0A0A;
--card: #141412;
--card-light: #1c1c18;
--accent: #FF4D00;
--accent-dark: #cc3d00;
--cream: #F1EFE9;
--muted: #8f8d86;
--border: #2b2b26;
--gradient-primary: var(--accent);
--font-display: 'Space Grotesk', 'Inter', Arial, sans-serif;
--font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

h1, h2, h3, .eyebrow, .nav-button, .primary-button, .secondary-button, .dark-button,
.service-top, .card-label, .review-label, .ticket-label, .request-label {
    font-family: var(--font-display);
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    position: sticky;
    top: 16px;
    z-index: 1000;

    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;

    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);

    border: 1px solid var(--border);
    border-radius: 999px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

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

.logo-circle {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--accent);
    color: #0A0A0A;

    font-size: 20px;
    font-weight: 900;
}

.logo strong {
    display: block;

    font-size: 15px;
    letter-spacing: 0.5px;
}

.logo small {
    display: block;

    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

nav a {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;

    transition: 0.2s ease;
}

nav a:hover {
    color: var(--accent);
}

.nav-button {
    background: var(--accent);
    color: #0A0A0A;

    padding: 12px 20px;

    border-radius: 30px;

    transition: 0.2s ease;
}

.nav-button:hover {
    background: #cc3d00;
    color: #0A0A0A;
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
    max-width: 1100px;
    min-height: 680px;

    margin: auto;
    padding: 100px 25px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: inline-block;

    padding: 7px 13px;

    border-radius: 20px;

    background: var(--accent);

    color: #0A0A0A;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.hero h1 {
    margin-top: 25px;

    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.95;

    font-weight: 950;
    letter-spacing: -3px;

    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    color: var(--accent);
}

.hero-content > p {
    max-width: 570px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 19px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.primary-button,
.secondary-button,
.dark-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 25px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;

    transition: 0.2s ease;
}

.primary-button {
    background: var(--accent);
    color: #0A0A0A;
}

.primary-button:hover {
    background: #cc3d00;
    transform: translateY(-3px);
}

.secondary-button {
    border: 2px solid var(--cream);
    color: var(--cream);
}

.secondary-button:hover {
    background: var(--cream);
    color: #0A0A0A;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 25px;
}

.trust-pills span {
    border: 1px solid var(--border);

    padding: 7px 12px;

    border-radius: 20px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 700;
}


/* =========================
   HERO CARD
========================= */

.hero-card {
    padding: 35px;

    border: 1px solid var(--border);
    border-radius: 28px;

    background: rgba(32, 26, 33, 0.7);

    box-shadow: 15px 15px 0 rgba(255, 77, 0, 0.08);
}

.card-label {
    color: var(--accent);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-top: 35px;
}

.stats strong {
    display: block;

    color: var(--accent);

    font-size: 40px;
    line-height: 1;
}

.stats small {
    display: block;

    margin-top: 7px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.card-line {
    height: 1px;

    margin: 35px 0;

    background: var(--border);
}

.card-quote {
    color: var(--cream);

    font-size: 18px;
    font-weight: 700;
}


/* =========================
   BOOKING BANNER
========================= */

.booking-banner {
    margin: 40px max(25px, calc((100% - 1100px) / 2));
    padding: 60px 50px;

    background: var(--accent);
    color: #0A0A0A;

    border-radius: 32px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.dark-eyebrow {
    background: #0A0A0A;
    color: var(--accent);
}

.booking-banner h2 {
    margin-top: 15px;

    font-size: 42px;
    line-height: 1;

    font-weight: 950;
}

.booking-banner p {
    margin-top: 12px;

    max-width: 500px;

    font-size: 16px;
}

.dark-button {
    background: #0A0A0A;
    color: var(--cream);

    white-space: nowrap;
}

.dark-button:hover {
    transform: translateY(-3px);
    background: #29222b;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
    max-width: 1100px;

    margin: auto;
    padding: 110px 25px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.section-heading h2,
.about-box h2 {
    margin-top: 18px;

    font-size: clamp(40px, 5vw, 58px);
    line-height: 0.95;

    font-weight: 950;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.section-heading p {
    max-width: 400px;

    color: var(--muted);
}


/* =========================
   SERVICES
========================= */

.service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    min-height: 290px;

    padding: 27px;

    border: 1px solid var(--border);
    border-radius: 25px;

    background: var(--card);

    display: flex;
    flex-direction: column;

    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: var(--accent);

    background: var(--card-light);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.service-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--accent);

    font-size: 24px;
}

.service-top {
    margin-top: 20px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.service-card h3 {
    margin-top: 8px;

    font-size: 23px;
    line-height: 1.1;
}

.service-card p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 14px;
}

.service-link {
    margin-top: auto;
    padding-top: 25px;

    font-size: 11px;
    font-weight: 900;

    color: var(--cream);
}

.service-card:hover .service-link {
    color: var(--accent);
}


/* =========================
   PROCESS
========================= */

.process-section {
    padding: 110px max(25px, calc((100% - 1100px) / 2));

    background: #100d12;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-card {
    padding: 40px 25px;

    background: var(--card);
    border: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.process-card:last-child {
    border-right: none;
}

.process-card > span {
    color: var(--accent);

    font-size: 12px;
    font-weight: 900;
}

.process-card h3 {
    margin-top: 25px;

    font-size: 21px;
}

.process-card p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 14px;
}


/* =========================
   ABOUT
========================= */

.about-section {
    max-width: 1100px;

    margin: auto;

    padding: 110px 25px;
}

.about-box {
    padding: 65px;

    border-radius: 30px;

    background: var(--card);

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
}

.about-box h2 span {
    display: block;
    color: var(--accent);
}

.about-box p {
    align-self: center;

    color: var(--muted);

    font-size: 18px;
}


/* =========================
   FAQ
========================= */

.faq-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

details {
    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: var(--card);
}

summary {
    cursor: pointer;

    font-weight: 800;
}

details p {
    margin-top: 15px;

    color: var(--muted);
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    padding: 130px 25px;

    text-align: center;

    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--background) 85%
    );
    color: var(--cream);
}

.final-cta h2 {
    margin-top: 20px;

    font-size: clamp(50px, 7vw, 90px);
    line-height: 0.9;

    font-weight: 950;
    letter-spacing: -4px;
    color: var(--cream);
}

.final-cta p {
    margin: 25px 0;
    color: var(--muted);
}

/* =========================
   FOOTER
========================= */

footer {
    padding: 60px 25px 25px;

    background: #0d0a0f;
}

.footer-content {
    max-width: 1100px;

    margin: auto;

    display: flex;
    justify-content: space-between;

    gap: 50px;
}

.footer-content strong {
    display: block;

    margin-bottom: 10px;

    font-size: 13px;
}

.footer-content p,
.footer-content a {
    display: block;

    color: var(--muted);

    font-size: 13px;
}

.footer-content a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1100px;

    margin: 50px auto 0;
    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: #756b73;

    font-size: 11px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {

    .nav-container {
        padding: 15px 20px;
    }

    nav a:not(.nav-button) {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;

        padding-top: 75px;
        gap: 50px;
    }

    .hero-card {
        max-width: 600px;
    }

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    border-top: none;
    border-bottom: none;
}

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-card:nth-child(2) {
        border-right: none;
    }

    .process-card:nth-child(3),
    .process-card:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .about-box {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 550px) {

    .hero {
        padding: 65px 20px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-card {
        padding: 25px;
    }

    .service-grid,
    .faq-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .process-card:last-child {
        border-bottom: none;
    }

    .about-box {
        padding: 35px 25px;
    }

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 20px;
    }

    .footer-content {
        flex-direction: column;
    }
}



/* =========================
   BOOKING PAGE
========================= */

.booking-page {
    max-width: 1000px;
    margin: auto;
    padding: 70px 25px 100px;
}


/* Progress bar */

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.progress-step {
    text-align: center;
    color: #756b73;
    min-width: 70px;
}

.progress-step span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin: auto;

    border: 1px solid var(--border);
    border-radius: 50%;

    font-size: 11px;
    font-weight: 900;
}

.progress-step p {
    margin-top: 8px;

    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.progress-step.active {
    color: var(--accent);
}

.progress-step.active span {
    background: var(--accent);
    border-color: var(--accent);
    color: #0A0A0A;
}

.progress-line {
    width: 80px;
    height: 1px;
    background: var(--border);
}


/* Booking heading */

.booking-heading {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.booking-heading h1 {
    margin-top: 25px;

    font-size: clamp(45px, 7vw, 72px);
    line-height: 0.95;

    font-weight: 950;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.booking-heading h1 span {
    display: block;
    color: var(--accent);
}

.booking-heading p {
    margin: 25px auto 0;

    max-width: 550px;

    color: var(--muted);
    font-size: 17px;
}


/* Service selection */

.booking-services {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 55px;
}

.booking-service {
    position: relative;
    display: block;

    cursor: pointer;
}

.booking-service input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking-service-content {
    min-height: 150px;

    padding: 25px;

    display: grid;
    grid-template-columns: 58px 1fr 35px;

    align-items: center;
    gap: 18px;

    border: 1px solid var(--border);
    border-radius: 22px;

    background: var(--card);

    transition: 0.25s ease;
}

.booking-service:hover .booking-service-content {
    transform: translateY(-4px);
    border-color: #766a74;
    background: var(--card-light);
}


/* Icon */

.booking-service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2a222b;

    font-size: 26px;

    transition: 0.25s ease;
}


/* Text */

.booking-service-content h3 {
    font-size: 18px;
    line-height: 1.15;
}

.booking-service-content p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 13px;
}


/* Selection circle */

.select-circle {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #514750;
    border-radius: 50%;

    color: transparent;

    font-size: 13px;
    font-weight: 900;

    transition: 0.2s ease;
}


/* SELECTED CARD */

.booking-service input:checked + .booking-service-content {
    border-color: var(--accent);

    background:
        linear-gradient(
            135deg,
            rgba(255, 77, 0, 0.13),
            rgba(255, 77, 0, 0.03)
        );

    box-shadow:
        0 0 0 1px rgba(255, 77, 0, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.2);
}

.booking-service input:checked + .booking-service-content
.booking-service-icon {
    background: var(--accent);
}

.booking-service input:checked + .booking-service-content
.select-circle {
    border-color: var(--accent);
    background: var(--accent);
    color: #0A0A0A;
}


/* Bottom buttons */

.booking-actions {
    margin-top: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-button {
    color: var(--muted);

    font-size: 12px;
    font-weight: 900;

    transition: 0.2s ease;
}

.back-button:hover {
    color: var(--cream);
}

.booking-actions .primary-button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}


/* Mobile */

@media (max-width: 700px) {

    .booking-page {
        padding: 50px 20px 80px;
    }

    .booking-progress {
        margin-bottom: 55px;
    }

    .progress-line {
        width: 25px;
    }

    .progress-step p {
        display: none;
    }

    .booking-services {
        grid-template-columns: 1fr;
    }

    .booking-service-content {
        min-height: 125px;
    }
}

@media (max-width: 450px) {

    .booking-service-content {
        grid-template-columns: 48px 1fr 30px;
        padding: 18px;
        gap: 12px;
    }

    .booking-service-icon {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

    .booking-service-content h3 {
        font-size: 16px;
    }

    .booking-service-content p {
        font-size: 12px;
    }
}


/* =========================
   JOB DETAILS
========================= */

.details-form {
    max-width: 750px;
    margin: 55px auto 0;
}

.details-form label {
    display: block;

    margin: 25px 0 8px;

    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.details-form label span {
    color: var(--muted);
    font-weight: 500;
    text-transform: none;
}

.details-form textarea {
    width: 100%;

    padding: 20px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--card);
    color: var(--cream);

    font-family: inherit;
    font-size: 15px;

    resize: vertical;

    outline: none;
}

.details-form textarea:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(255, 77, 0, 0.1);
}

.details-form textarea::placeholder {
    color: #756b73;
}


/* Selected service */

.selected-service-box {
    padding: 20px 24px;

    border: 1px solid var(--accent);
    border-radius: 18px;

    background: rgba(255, 77, 0, 0.08);
}

.selected-service-box span {
    display: block;

    color: var(--accent);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.selected-service-box strong {
    display: block;

    margin-top: 5px;

    font-size: 20px;
}


/* Photo upload */

.upload-box {
    position: relative;

    min-height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 2px dashed var(--border);
    border-radius: 18px;

    background: var(--card);

    cursor: pointer;

    transition: 0.2s ease;
}

.upload-box:hover {
    border-color: var(--accent);
    background: var(--card-light);
}

.upload-box input {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: pointer;
}

.upload-box strong {
    color: var(--accent);

    font-size: 16px;
}

.upload-box p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 12px;
}




/* SCHEDULE PAGE */

#schedule-form {
    width: 100%;
}

.details-form input[type="date"] {
    width: 100%;
    padding: 18px;
    margin-top: 10px;
    margin-bottom: 30px;

    background: var(--card);
    color: var(--cream);

    border: 1px solid var(--border);
    border-radius: 14px;

    font-size: 16px;
    font-family: inherit;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 10px;
}

.time-slot {
    cursor: pointer;
}

.time-slot input {
    display: none;
}

.time-slot span {
    display: block;

    padding: 18px;

    text-align: center;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;

    color: var(--cream);

    transition: 0.2s;
}

.time-slot span:hover {
    border-color: var(--accent);
}

.time-slot input:checked + span {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}


/* MOBILE */

@media (max-width: 700px) {

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .time-slot span {
        padding: 16px 10px;
        font-size: 14px;
    }

}




/* BOOKING BUTTONS */

.booking-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.booking-actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0 28px;

    border-radius: 999px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;

    text-decoration: none;
    cursor: pointer;

    transition: 0.2s ease;
}

.booking-actions .button-primary {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}

.booking-actions .button-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

.booking-actions .button-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border);
}

.booking-actions .button-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}


/* MOBILE BUTTONS */

@media (max-width: 700px) {

    .booking-actions {
        flex-direction: column-reverse;
        width: 100%;
    }

    .booking-actions .button {
        width: 100%;
    }

}


/* CONTACT FORM */

#contact-form {
    width: 100%;
}

#contact-form input[type="text"],
#contact-form input[type="tel"],
#contact-form input[type="email"] {
    width: 100%;
    padding: 18px;
    margin-top: 10px;
    margin-bottom: 24px;

    background: var(--card);
    color: var(--cream);

    border: 1px solid var(--border);
    border-radius: 14px;

    font-size: 16px;
    font-family: inherit;

    outline: none;
}

#contact-form input:focus {
    border-color: var(--accent);
}

#contact-form input::placeholder {
    color: var(--muted);
}




/* REVIEW PAGE */

.review-card {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
}

.review-section {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.review-section:first-child {
    padding-top: 0;
}

.review-section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.review-label {
    margin-bottom: 8px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.review-section h3 {
    margin: 0;

    color: var(--cream);

    font-size: 20px;
}

.review-section p:not(.review-label) {
    margin: 6px 0 0;

    color: var(--muted);

    line-height: 1.6;
}

.review-note {
    margin-top: 20px;

    color: var(--muted);

    text-align: center;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 700px) {

    .review-card {
        padding: 22px;
    }

}





/* CONFIRMATION PAGE */

.confirmation-container {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;
    padding: 80px 20px;

    text-align: center;
}

.confirmation-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;

    padding: 55px 40px;
}

.confirmation-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--accent);
    color: white;

    font-size: 34px;
    font-weight: 800;
}

.confirmation-card h1 {
    margin: 10px 0 20px;

    color: var(--cream);

    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.95;
}

.confirmation-text {
    max-width: 550px;

    margin: 10px auto;

    color: var(--muted);

    line-height: 1.6;
}

.confirmation-status {
    display: flex;
    align-items: center;
    gap: 14px;

    max-width: 420px;

    margin: 30px auto;

    padding: 18px;

    text-align: left;

    background: var(--card-light);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.status-dot {
    width: 12px;
    height: 12px;

    flex-shrink: 0;

    background: var(--accent);
    border-radius: 50%;
}

.confirmation-status strong {
    color: var(--cream);
}

.confirmation-status p {
    margin-top: 4px;

    color: var(--muted);
    font-size: 13px;
}

.confirmation-card .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0 28px;

    border-radius: 999px;

    background: var(--accent);
    color: white;

    border: 1px solid var(--accent);

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
}

.confirmation-card .button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 700px) {

    .confirmation-container {
        padding: 50px 16px;
    }

    .confirmation-card {
        padding: 40px 22px;
    }

    .confirmation-card .button {
        width: 100%;
    }

}



/* ADMIN DASHBOARD */

.admin-page {
    min-height: 100vh;
    background: var(--background);
}

.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 45px;
}

.admin-header h1 {
    margin: 10px 0 15px;

    color: var(--cream);

    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.9;
}

.admin-header > div:first-child > p:last-child {
    color: var(--muted);
}

.admin-stat {
    min-width: 150px;

    padding: 25px;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;

    text-align: center;
}

.admin-stat span {
    display: block;

    color: var(--accent);

    font-size: 48px;
    font-weight: 800;
}

.admin-stat p {
    margin-top: 4px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}


/* FILTERS */

.admin-filters {
    display: flex;
    gap: 10px;

    margin-bottom: 25px;
}

.admin-filter {
    padding: 12px 20px;

    background: transparent;
    color: var(--muted);

    border: 1px solid var(--border);
    border-radius: 999px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 800;

    cursor: pointer;
}

.admin-filter:hover {
    border-color: var(--accent);
    color: var(--cream);
}

.admin-filter.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}


/* REQUEST LIST */

.request-list {
    display: grid;
    gap: 15px;
}

.empty-state {
    padding: 70px 25px;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;

    text-align: center;
}

.empty-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--card-light);
    color: var(--accent);

    font-size: 30px;
}

.empty-state h2 {
    color: var(--cream);
}

.empty-state p {
    margin-top: 8px;
    color: var(--muted);
}


/* MOBILE */

@media (max-width: 700px) {

    .admin-container {
        padding: 45px 16px;
    }

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-stat {
        width: 100%;
    }

    .admin-filters {
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .admin-filter {
        flex-shrink: 0;
    }

}


/* ADMIN LOGIN */
#login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

#login-form label {
    margin-top: 10px;
    color: var(--cream);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#login-form input {
    width: 100%;
    padding: 16px 18px;
    background: var(--card-light);
    color: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

#login-form input:focus {
    border-color: var(--accent);
}

#login-form .button {
    width: 100%;
    min-height: 54px;
    margin-top: 20px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: var(--accent);
    color: white;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: 0.2s ease;
}

#login-form .button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

#login-message {
    min-height: 20px;
    margin-top: 5px;
    color: var(--accent);
    font-size: 13px;
}


/* REQUEST ACTION BUTTONS */

.request-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.request-action {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: 0.2s ease;
}

.request-action.accept {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}

.request-action.accept:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

.request-action.decline {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
}

.request-action.decline:hover {
    color: #ff7777;
    border-color: #ff7777;
    transform: translateY(-2px);
}

.request-action:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}

@media (max-width: 600px) {
    .request-actions {
        flex-direction: column;
    }

    .request-action {
        width: 100%;
    }
}


/* JOB STATUS SELECTOR */

.request-status-select {
    min-height: 48px;
    padding: 0 42px 0 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card-light);
    color: var(--cream);
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    cursor: pointer;
    outline: none;
    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 20px,
        calc(100% - 13px) 20px;
    background-size:
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
}

.request-status-select:hover,
.request-status-select:focus {
    border-color: var(--accent);
}

.request-status-select option {
    background: var(--card);
    color: var(--cream);
}



/* TEAM ASSIGNMENT DROPDOWN */

.request-assignee-select {
    min-height: 48px;
    padding: 0 42px 0 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background-color: var(--card-light);
    color: var(--cream);
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    cursor: pointer;
    outline: none;
    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%);

    background-position:
        calc(100% - 18px) 20px,
        calc(100% - 13px) 20px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.request-assignee-select:hover,
.request-assignee-select:focus {
    border-color: var(--accent);
}

.request-assignee-select option {
    background: var(--card);
    color: var(--cream);
}

.request-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 700px) {
    .request-actions {
        flex-direction: column;
    }

    .request-assignee-select,
    .request-status-select {
        width: 100%;
    }
}


/* TICKET PAGE */

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin: 45px 0 35px;
}

.ticket-header h1 {
    margin: 10px 0;
    color: var(--cream);
    font-size: clamp(45px, 7vw, 75px);
    line-height: 0.95;
}

.ticket-header > div > p:last-child {
    color: var(--muted);
    font-size: 16px;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ticket-section {
    padding: 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
}

.ticket-section:first-child {
    grid-column: span 2;
}

.ticket-label {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.ticket-section h2 {
    margin-bottom: 10px;
    color: var(--cream);
    font-size: 24px;
}

.ticket-section p:not(.ticket-label) {
    margin-top: 5px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.ticket-header .request-status {
    margin-bottom: 5px;
}

@media (max-width: 700px) {

    .ticket-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .ticket-grid {
        grid-template-columns: 1fr;
    }

    .ticket-section:first-child {
        grid-column: span 1;
    }

    .ticket-section {
        padding: 22px;
    }
}


/* TICKET ACTIONS */

.ticket-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 25px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
}

.ticket-actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: 0.2s ease;
}

.ticket-actions .button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

.ticket-actions .button:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}

#ticket-message {
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 600px) {
    .ticket-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ticket-actions .button {
        width: 100%;
    }

    #ticket-message {
        text-align: center;
    }
}



/* TICKET PHOTOS */

.ticket-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.ticket-photo-thumb {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    background: var(--card-light);
    transition: 0.2s ease;
}

.ticket-photo-thumb:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.ticket-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* PHOTO LIGHTBOX (popup) */

.photo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 10, 0.92);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    cursor: zoom-out;
}

.photo-lightbox.open {
    display: flex;
}

.photo-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.photo-lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--cream);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
}




/* ADMIN FILTER BAR - WRAP ON SMALL SCREENS */

.admin-filters {
    flex-wrap: wrap;
}

/* DASHBOARD CARD THUMBNAIL */

.request-thumb {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.request-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.request-thumb-count {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--cream);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 999px;
}
/* STATUS BADGE COLORS */

.request-status.pending {
    background: rgba(255, 200, 87, 0.15);
    color: #ffc857;
}

.request-status.accepted {
    background: rgba(87, 199, 255, 0.15);
    color: #57c7ff;
}

.request-status.in_progress {
    background: rgba(255, 145, 87, 0.15);
    color: #ff9157;
}

.request-status.completed {
    background: rgba(101, 224, 145, 0.15);
    color: #65e091;
}

.request-status.declined {
    background: rgba(183, 173, 181, 0.15);
    color: #b7adb5;
}


/* PRIORITY BADGE */

.priority-badge {
    display: inline-block;
    border-radius: 999px !important;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.priority-badge.urgent {
    background: rgba(220, 60, 60, 0.18);
    color: #ff6b6b;
}


/* TICKET NOTES + PRICING FIELDS */

.ticket-full-width {
    grid-column: span 2;
}

@media (max-width: 700px) {
    .ticket-full-width {
        grid-column: span 1;
    }
}

.ticket-notes-textarea {
    width: 100%;
    min-height: 110px;
    padding: 14px 18px;
    background: var(--card-light);
    color: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;
    outline: none;
    resize: vertical;
    box-sizing: border-box;
}

.ticket-notes-textarea:focus {
    border-color: var(--accent);
}

.ticket-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ticket-price-label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.ticket-price-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--card-light);
    color: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.ticket-price-input:focus {
    border-color: var(--accent);
}

@media (max-width: 700px) {
    .ticket-price-row {
        grid-template-columns: 1fr;
    }
}


/* SELECTED PHOTO FILE LIST */

.photo-file-list {
    margin-top: 14px;
}

.photo-file-list strong {
    display: block;
    color: var(--cream);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.photo-file-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.photo-file-list li {
    background: var(--card-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 10px 8px 14px;
    color: var(--muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.photo-remove-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: 0.15s ease;
}

.photo-remove-btn:hover {
    background: rgba(255, 77, 0, 0.15);
    color: var(--accent);
}


/* SHOW MORE SERVICES */

.extra-services {
    display: none;
    grid-column: 1 / -1;
}

.extra-services.open {
    display: contents;
}

.show-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

#show-more-services {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 32px;
    border-radius: 999px;
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: 0.2s ease;
}

#show-more-services:hover {
    border-color: var(--accent);
    color: var(--accent);
}


/* JOB OPS BACKDROP — near-black, no purple wash */

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(
        ellipse at top,
        rgba(255, 77, 0, 0.06) 0%,
        rgba(10, 10, 10, 0) 55%
    );
    z-index: -1;
    pointer-events: none;
}


/* CARD ACCENT — thin solid orange top edge, not a gradient bubble */

.hero-card,
.process-card,
.service-card,
.faq-grid details,
.details-form,
.review-card,
.booking-card,
.admin-stat,
.request-card,
.ticket-section {
    position: relative;
    overflow: hidden;
}

.hero-card::before,
.process-card::before,
.service-card::before,
.faq-grid details::before,
.details-form::before,
.review-card::before,
.booking-card::before,
.admin-stat::before,
.request-card::before,
.ticket-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    opacity: 0.7;
}


/* CARD GEOMETRY — sharp, industrial edges (not bubbly rounded cards) */

.hero-card,
.process-card,
.service-card,
.faq-grid details,
.details-form,
.review-card,
.booking-card,
.admin-stat,
.request-card,
.ticket-section,
.booking-service,
.time-slot {
    border-radius: 4px !important;
    box-shadow: none;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

/* Same sharp-corner treatment for the remaining card-like panels
   that were still carrying the old bubbly rounded radius (mostly
   the booking flow and admin pages, which only got the nav/footer
   rebrand pass and never had this geometry pass applied). */
.booking-banner,
.about-box,
.booking-service-content,
.selected-service-box,
.upload-box,
.confirmation-card,
.confirmation-status,
.empty-state,
.ticket-actions,
.delete-menu-box,
.calendar-day {
    border-radius: 4px !important;
}

.service-card:hover,
.process-card:hover,
.request-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.primary-button,
.secondary-button,
.dark-button,
.nav-button,
.button,
#show-more-services {
    border-radius: 999px !important;
}


/* BUTTON BASE — applies everywhere a .button/.button-primary/.button-secondary
   is used; more specific rules elsewhere (ticket-actions, booking-actions, etc.)
   can still override colors, but every button gets real sizing/spacing here
   so nothing falls back to a plain unstyled browser button. */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.15s ease;
    white-space: nowrap;
}

.button-primary {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}

.button-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.button-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border);
}

.button-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}


/* STATUS BADGE — FORCE PILL SHAPE */

.request-status {
    border-radius: 999px !important;
    padding: 9px 16px !important;
    display: inline-block;
}


/* DELETE BUTTON ON DASHBOARD CARDS */

.request-delete-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 16px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.15s ease;
}

.request-delete-btn:hover {
    background: rgba(220, 60, 60, 0.15);
    border-color: #dc3c3c;
    color: #ff6b6b;
}


/* DELETE / ARCHIVE CONFIRMATION POPUP */

.delete-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 6, 15, 0.75);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.delete-menu-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.delete-menu-box h3 {
    color: var(--cream);
    font-size: 18px;
    margin: 0 0 10px;
}

.delete-menu-box p {
    color: var(--muted);
    font-size: 13px;
    margin: 0 0 20px;
    line-height: 1.5;
}

.delete-menu-box button {
    display: block;
    width: 100%;
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--card-light);
    color: var(--cream);
    transition: 0.15s ease;
}

.delete-menu-archive:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.delete-menu-delete {
    background: rgba(220, 60, 60, 0.12);
    border-color: #dc3c3c;
    color: #ff6b6b;
}

.delete-menu-delete:hover {
    background: rgba(220, 60, 60, 0.25);
}

.delete-menu-cancel {
    margin-bottom: 0;
    background: transparent;
    border: none;
    color: var(--muted);
}

.delete-menu-cancel:hover {
    color: var(--cream);
}


/* TICKET DELETE BUTTON */

.ticket-delete-button {
    border-color: #dc3c3c !important;
    color: #ff6b6b !important;
}

.ticket-delete-button:hover {
    background: rgba(220, 60, 60, 0.15) !important;
}


/* ACTIVITY LOG PAGE */

.log-actor-badge {
    background: rgba(193, 127, 58, 0.18) !important;
    color: var(--accent) !important;
    text-transform: capitalize;
}

.log-entry:hover {
    transform: translateY(-3px);
}


/* NAV LINKS SPACING + BUBBLE */

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.nav-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
}


/* SHARED REQUEST/LOG CARD STYLING */

.request-card {
    display: block;
    padding: 30px;
    background: var(--card);
    border: 1px solid var(--border);
    box-sizing: border-box;
}

.request-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.request-card h2 {
    margin: 6px 0 0;
    color: var(--cream);
    font-size: 28px;
    line-height: 1.1;
}

.request-label {
    margin: 0;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.request-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    padding-top: 25px;
}

.request-info strong {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.request-info p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.request-info p + p {
    margin-top: 3px;
}

@media (max-width: 700px) {
    .request-card {
        padding: 20px;
    }

    .request-card-top {
        flex-direction: column;
    }

    .request-info {
        grid-template-columns: 1fr;
    }
}


/* LOG ENTRY COLOR BY ACTION TYPE */

.log-entry.log-status_changed::before { background: #57c7ff !important; }
.log-entry.log-assigned::before { background: var(--gradient-primary) !important; }
.log-entry.log-priority_changed::before { background: #ff9157 !important; }
.log-entry.log-payment_status_changed::before { background: #ffc857 !important; }
.log-entry.log-payment_recorded::before { background: #65e091 !important; }
.log-entry.log-archived::before { background: #b7adb5 !important; }
.log-entry.log-restored::before { background: #65e091 !important; }
.log-entry.log-deleted::before { background: #ff6b6b !important; }
.log-entry.log-message_sent::before { background: #57c7ff !important; }



/* FINANCE DASHBOARD */

.finance-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.finance-stat {
    padding: 25px;
    background: var(--card);
    border: 1px solid var(--border);
    text-align: center;
}

.finance-stat-value {
    display: block;
    color: var(--accent);
    font-size: 32px;
    font-weight: 800;
}

.finance-stat p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.finance-form {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr auto;
    gap: 12px;
    margin-top: 15px;
    align-items: stretch;
}

.finance-form select,
.finance-form input {
    width: 100%;
    padding: 14px 16px;
    background: var(--card-light);
    color: var(--cream);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.finance-form select:focus,
.finance-form input:focus {
    border-color: var(--accent);
}

.finance-form button {
    min-height: 50px;
    padding: 0 28px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

@media (max-width: 800px) {
    .finance-form {
        grid-template-columns: 1fr;
    }
}


/* FINANCE CARD DELETE BUTTON ROW */

.finance-summary-grid + section .request-actions,
#transaction-list .request-actions,
#earnings-list .request-actions {
    border-top: none;
    padding-top: 0;
    justify-content: flex-end;
}



/* INVENTORY PAGE */

.item-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
}

.item-form input,
.item-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--card-light);
    color: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.item-form input:focus,
.item-form textarea:focus {
    border-color: var(--accent);
}

.item-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
}

.item-form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
}

.item-form-actions .button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.item-form-actions .button-secondary {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--cream);
    cursor: pointer;
}

@media (max-width: 700px) {
    .item-form {
        grid-template-columns: 1fr;
    }
}

.admin-header {
    flex-wrap: wrap;
}

#show-add-item {
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}


/* ADMIN HUB CARDS */

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.hub-card {
    display: block;
    padding: 30px;
    background: var(--card);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: 0.25s ease;
}

.hub-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.hub-card-value {
    display: block;
    margin-top: 12px;
    color: var(--cream);
    font-size: 40px;
    font-weight: 800;
}

.hub-card-sub {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}


/* CALENDAR PAGE */

.calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-nav .button {
    border: 1px solid var(--border);
    background: var(--card-light);
    color: var(--cream);
    cursor: pointer;
    font-family: inherit;
    min-height: 42px;
    padding: 0 20px;
}

.calendar-nav .button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.calendar-toolbar h2 {
    color: var(--cream);
    font-size: 22px;
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.calendar-day {
    min-height: 90px;
    padding: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
    box-sizing: border-box;
}

.calendar-day-empty {
    background: transparent;
    border: none;
}

.calendar-day-has-jobs {
    cursor: pointer;
    transition: 0.15s ease;
}

.calendar-day-has-jobs:hover {
    border-color: var(--accent);
}

.calendar-day-today {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.calendar-day-number {
    color: var(--cream);
    font-size: 13px;
    font-weight: 800;
}

.calendar-urgent-flag {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 12px;
}

.calendar-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 10px;
    align-items: center;
}

.calendar-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--muted);
}

.calendar-dot.pending { background: #ffc857; }
.calendar-dot.accepted { background: #57c7ff; }
.calendar-dot.in_progress { background: #ff9157; }
.calendar-dot.completed { background: #65e091; }
.calendar-dot.declined { background: #b7adb5; }

.calendar-dot-more {
    font-size: 10px;
    color: var(--muted);
    font-weight: 800;
}

@media (max-width: 700px) {

    .calendar-day {
        min-height: 56px;
        padding: 6px;
    }

    .calendar-day-number {
        font-size: 11px;
    }

    .calendar-weekdays span {
        font-size: 9px;
    }
}


/* CALENDAR: UNSCHEDULED LIST */

.calendar-unscheduled-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: var(--card-light);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.15s ease;
}

.calendar-unscheduled-item:hover {
    border-color: var(--accent);
}


/* CALENDAR: DAY POPUP */

.calendar-day-popup {
    max-width: 420px;
}

.calendar-day-popup-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    max-height: 50vh;
    overflow-y: auto;
}

.calendar-day-popup-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: var(--card-light);
    border: 1px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: 0.15s ease;
}

.calendar-day-popup-item:hover {
    border-color: var(--accent);
}

.calendar-day-popup-item p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.calendar-day-popup-event {
    cursor: default;
    background: rgba(193, 127, 58, 0.1);
}

.calendar-day-popup-event .request-delete-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
}


/* CALENDAR: EVENT CHIPS ON THE GRID */

.calendar-event-chips {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 6px;
}

.calendar-event-chip {
    display: block;
    background: rgba(193, 127, 58, 0.18);
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 2px 6px;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.calendar-event-chip-logan {
    background: rgba(87, 199, 255, 0.18);
    color: #57c7ff;
}

.calendar-event-chip-isaac {
    background: rgba(101, 224, 145, 0.18);
    color: #65e091;
}

@media (max-width: 700px) {
    .calendar-event-chip {
        font-size: 8px;
        padding: 1px 4px;
    }
}




/* =========================
   JOB OPS MOTION SYSTEM
========================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-32px);
}

[data-reveal="left"].is-visible {
    transform: translateX(0);
}

[data-reveal="right"] {
    transform: translateX(32px);
}

[data-reveal="right"].is-visible {
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-content {
        transform: none !important;
        opacity: 1 !important;
    }

    .hero-card {
        transform: none !important;
        opacity: 1 !important;
    }

    /* Kill the pinned scroll ranges entirely so reduced-motion
       users don't scroll through dead space with nothing moving. */
    .scroll-pin {
        height: auto !important;
    }

    .scroll-pin-sticky,
    .scroll-pin .process-section {
        position: static !important;
        height: auto !important;
    }

    .process-card.is-active,
    .process-card.is-dimmed {
        transform: none !important;
        opacity: 1 !important;
        border-color: var(--border) !important;
    }
}


/* =========================
   CINEMATIC SCROLL SEQUENCES (desktop only, >=900px)
========================= */

.scroll-pin {
    position: relative;
}

@media (min-width: 900px) {

    .scroll-pin[data-pin="hero"] {
        height: 150vh;
    }

    .scroll-pin[data-pin="how-it-works"] {
        height: 220vh;
    }

    .scroll-pin-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .hero-content,
    .hero-card {
        transition: transform 0.05s linear, opacity 0.05s linear;
    }

    .scroll-pin[data-pin="how-it-works"] .process-section {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .process-card {
        transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
    }

    .process-card.is-active {
        transform: scale(1.06);
        border-color: var(--accent);
        opacity: 1;
    }

    .process-card.is-dimmed {
        opacity: 0.35;
        transform: scale(0.96);
    }
}


/* ABOUT — faint oversized background monogram, scales/fades in */

.about-section {
    position: relative;
    overflow: hidden;
}

.about-bg-word {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(140px, 24vw, 380px);
    font-weight: 700;
    color: var(--accent);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 1.4s ease, transform 1.4s ease;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    overflow: hidden;
    user-select: none;
}

.about-bg-word.is-visible {
    opacity: 0.05;
    transform: scale(1);
}

.about-box {
    position: relative;
    z-index: 1;
}


/* FINAL CTA — large typography scales down into place */

.final-cta h2 {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    transform: scale(1.25);
    opacity: 0;
}

.final-cta h2.is-visible {
    transform: scale(1);
    opacity: 1;
}
