/* =========================================================
   YOMARO'S CONSTRUCTION
   MASTER STYLESHEET
========================================================= */


/* =========================================================
   1. DESIGN SYSTEM
========================================================= */

:root {
    --bg-main: #f5f4f0;
    --bg-white: #ffffff;

    --dark: #111111;
    --dark-soft: #181818;

    --text: #171717;
    --text-muted: #6f6f6f;
    --text-light-muted: #b8b8b8;

    --accent: #f0b429;
    --accent-hover: #d99d16;

    --border-light: #dddddd;
    --border-dark: #2d2d2d;

    --container: 1180px;

    --radius-sm: 4px;
    --radius-md: 8px;

    --section-padding: 110px;

    --transition: 0.25s ease;
}


/* =========================================================
   2. RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg-main);
    color: var(--text);
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   3. GLOBAL LAYOUT
========================================================= */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: var(--section-padding) 0;
}


/* =========================================================
   4. GLOBAL TYPOGRAPHY
========================================================= */

.section-label {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 50px;
}

.section-heading h2,
.section-title {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -2px;
    font-weight: 800;
}


/* =========================================================
   5. GLOBAL BUTTONS
========================================================= */

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

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

    border: 1px solid transparent;
    border-radius: var(--radius-sm);

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

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

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

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

.button-secondary,
.button-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.button-secondary:hover,
.button-outline-light:hover {
    border-color: #ffffff;
}


/* =========================================================
   6. NAVBAR
========================================================= */
/* MOBILE MENU - HIDDEN ON DESKTOP */

.mobile-menu-button,
.mobile-menu,
.mobile-menu-overlay {
    display: none;
}
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;

    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(var(--container), calc(100% - 40px));
    height: 1px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.14);
}

.nav-container {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    flex-shrink: 0;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav-action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo {
    justify-self: start;
    color: #ffffff;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: color var(--transition);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.desktop-nav a:hover {
    color: #ffffff;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-quote-button {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;

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

    border-radius: var(--radius-sm);

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.2px;

    transition:
        transform var(--transition),
        background var(--transition);
}

.nav-quote-button:hover {
    transform: translateY(-2px);
    background: var(--accent-hover);
}


/* =========================================================
   7. HERO
========================================================= */

.hero {
    position: relative;
    min-height: 820px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 10, 0.88) 0%,
            rgba(10, 10, 10, 0.68) 42%,
            rgba(10, 10, 10, 0.28) 72%,
            rgba(10, 10, 10, 0.1) 100%
        ),
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=90")
        center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.34),
        transparent
    );
    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 105px;
    padding-bottom: 70px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--accent);

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

    letter-spacing: 2.5px;
    text-transform: uppercase;

    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--accent);
}

.hero h1 {
    max-width: 900px;

    color: #ffffff;

    font-size: clamp(64px, 7.4vw, 112px);
    font-weight: 900;

    line-height: 0.88;
    letter-spacing: -5px;
}

.hero-description {
    max-width: 590px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 18px;
    line-height: 1.75;

    margin-top: 30px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.hero .button {
    min-height: 56px;
    padding: 0 25px;
}

.hero .button-primary {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero .button-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}


/* HERO STATS */

.hero-stats {
    display: flex;
    gap: 38px;

    margin-top: 55px;
    padding-top: 28px;

    max-width: 690px;

    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stat strong {
    display: block;

    color: #ffffff;

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

    margin-bottom: 2px;
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.58);

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

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* =========================================================
   8. SERVICES
========================================================= */

.services-preview {
    padding: var(--section-padding) 0;
}
.services-heading-row {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: end;

    margin-bottom: 55px;
}

.services-heading-row .section-heading {
    margin-bottom: 0;
}

.services-heading-row h2 {
    font-size: clamp(46px, 5vw, 70px);
    line-height: 0.96;
    letter-spacing: -3px;
}

.services-intro {
    max-width: 440px;

    color: var(--text-muted);

    font-size: 17px;
    line-height: 1.8;

    padding-bottom: 6px;
}

.service-category {
    color: var(--accent) !important;

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

    letter-spacing: 1.8px;

    margin-bottom: 8px !important;
}

.service-card-bottom h3 {
    font-size: 32px;
    line-height: 1.05;
}

.service-card {
    cursor: pointer;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;

    border: 1px solid rgba(255, 255, 255, 0);

    pointer-events: none;

    transition: border-color var(--transition);
}

.service-card:hover::after {
    border-color: rgba(240, 180, 41, 0.7);
}
.service-grid {
    display: grid;

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

    gap: 22px;
}

.service-card {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    background-position: center;
    background-size: cover;

    border: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.14);
}


/* FRAMING PHOTO */

/* =========================================================
   SERVICE IMAGES
========================================================= */

.service-construction {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.08)
        ),
        url("../images/construction.jpg");
}

.service-framing {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.08)
        ),
        url("../images/framing.jpg");
}

.service-roofing {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.08)
        ),
        url("../images/roofing.jpg");
}

.service-demolition {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.08)
        ),
        url("../images/demolition.jpg");
}

.service-junk {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.08)
        ),
        url("../images/junk-removal.jpg");
}

.service-debris {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.08)
        ),
        url("../images/debris-removal.jpg");
}

.service-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.9)
        );

    transition: background 0.3s ease;
}

.service-card:hover .service-card-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.04),
            rgba(0, 0, 0, 0.8)
        );
}

.service-card-content {
    position: relative;
    z-index: 2;

    min-height: 430px;

    padding: 32px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-number {
    color: var(--accent);

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

.service-card-bottom h3 {
    color: #ffffff;

    font-size: 28px;

    margin-bottom: 12px;
}

.service-card-bottom p {
    color: #d2d2d2;

    line-height: 1.6;

    margin-bottom: 20px;
}

.service-link {
    display: inline-block;

    color: var(--accent);

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

    text-transform: uppercase;

    letter-spacing: 0.5px;

    transition:
        color var(--transition),
        transform var(--transition);
}

.service-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}


/* =========================================================
   9. ABOUT / WHY CHOOSE US
========================================================= */

.about-preview {
    padding: var(--section-padding) 0;

    background: var(--dark);

    color: #ffffff;
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-image {
    min-height: 620px;

    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 620px;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.025);
}

.about-content h2 {
    font-size: clamp(42px, 5vw, 68px);

    line-height: 1;
    letter-spacing: -2px;

    margin-bottom: 25px;
}

.about-description {
    color: #c8c8c8;

    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 40px;
}

.about-points {
    display: grid;

    gap: 24px;

    margin-bottom: 38px;
}

.about-point {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 16px;

    padding-bottom: 22px;

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

.about-point span {
    color: var(--accent);

    font-weight: 900;
}

.about-point h3 {
    font-size: 20px;

    margin-bottom: 6px;
}

.about-point p {
    color: var(--text-light-muted);

    line-height: 1.6;
}

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

    min-height: 54px;

    padding: 0 24px;

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

    border-radius: var(--radius-sm);

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

    transition:
        background var(--transition),
        transform var(--transition);
}

.about-button:hover {
    background: var(--accent-hover);

    transform: translateY(-2px);
}
/* =========================================================
   10. PROJECTS
========================================================= */

.projects-preview {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.projects-heading-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: end;

    margin-bottom: 55px;
}

.projects-heading-row .section-title {
    max-width: 700px;
}

.projects-intro {
    max-width: 440px;

    color: var(--text-muted);

    font-size: 17px;
    line-height: 1.8;

    padding-bottom: 5px;
}

.projects-grid {
    display: grid;

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

    gap: 24px;
}

.project-card {
    overflow: hidden;
}

.project-large {
    grid-row: span 2;
}

.project-image {
    min-height: 360px;

    background-position: center;
    background-size: cover;

    transition: transform 0.5s ease;
}

.project-large .project-image {
    min-height: 745px;
}

.project-card:hover .project-image {
    transform: scale(1.025);
}


/* TEMPORARY PROJECT IMAGES */

.project-image-1 {
    background-image:
        url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1400&q=85");
}

.project-image-2 {
    background-image:
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1000&q=85");
}

.project-image-3 {
    background-image:
        url("https://images.unsplash.com/photo-1632759145351-1d592919f522?auto=format&fit=crop&w=1000&q=85");
}

.project-image-4 {
    background-image:
        url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1000&q=85");
}


.project-info {
    display: grid;

    grid-template-columns: 44px 1fr;

    gap: 14px;

    padding: 20px 0 8px;
}

.project-info span {
    color: var(--accent);

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

.project-info p {
    color: var(--text-muted);

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

    letter-spacing: 1.6px;

    margin-bottom: 5px;
}

.project-info h3 {
    color: var(--dark);

    font-size: 24px;
    line-height: 1.1;
}
/* =========================================================
   11. FREE ESTIMATE
========================================================= */

.estimate-section {
    padding: var(--section-padding) 0;
    background: var(--bg-main);
}

.estimate-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.estimate-content {
    position: sticky;
    top: 40px;
}

.estimate-content .section-title {
    max-width: 520px;
}

.estimate-description {
    max-width: 470px;

    color: var(--text-muted);

    font-size: 18px;
    line-height: 1.8;

    margin-top: 24px;
}

.estimate-contact-box {
    margin-top: 40px;
    padding-top: 28px;

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

.estimate-contact-box span {
    display: block;

    color: var(--text-muted);

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

    margin-bottom: 8px;
}

.estimate-contact-box a {
    color: var(--dark);

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

    transition: color var(--transition);
}

.estimate-contact-box a:hover {
    color: var(--accent-hover);
}


/* FORM */

.estimate-form {
    background: #ffffff;

    padding: 42px;

    border: 1px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;

    margin-bottom: 22px;
}

.form-group label {
    color: var(--dark);

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

    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

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

    background: #ffffff;

    color: var(--dark);

    padding: 15px 16px;

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-group input,
.form-group select {
    min-height: 52px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

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

    box-shadow:
        0 0 0 3px rgba(240, 180, 41, 0.12);
}

.estimate-submit {
    width: 100%;
    min-height: 58px;

    margin-top: 4px;
}
/* =========================================================
   ADMIN
========================================================= */
/* =========================================================
   ADMIN APP LAYOUT
========================================================= */
.worker-reset-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.worker-reset-form input {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #d7d7d2;
    background: #f8f8f6;
    color: #111418;
    font-family: inherit;
    font-size: 11px;
    outline: none;
    box-sizing: border-box;
    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.worker-reset-form input:focus {
    background: #fff;
    border-color: #f3b51b;
    box-shadow: 0 0 0 3px rgba(243, 181, 27, .10);
}

.worker-reset-button {
    min-height: 40px;
    padding: 0 14px;
    background: #11161b;
    color: #fff;
    border: 1px solid #11161b;
    font-family: inherit;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.worker-reset-button:hover {
    background: #f3b51b;
    color: #111418;
    border-color: #f3b51b;
}
.flash-container {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 32px);
    max-width: 600px;
}

.flash-message {
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    transition: opacity 0.3s ease, transform 0.3s ease;
}

.flash-success {
    background: #111;
    color: #fff;
    border: 1px solid #d4af37;
}

.flash-warning {
    background: #111;
    color: #fff;
    border: 1px solid #d4af37;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo-img {
    width: 68px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 800px) {
    .worker-reset-form {
        flex-direction: column;
        align-items: stretch;
    }

    .worker-reset-form input,
    .worker-reset-button {
        width: 100%;
    }
}

.admin-shell {
    width: 100%;
    min-height: 100vh;

    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);

    background: #efefec;
}


/* SIDEBAR */

.admin-sidebar {
    position: sticky;
    top: 0;

    width: 250px;
    height: 100vh;

    display: flex;
    flex-direction: column;

    padding: 30px 18px 22px;

    background: #0d0d0d;
    color: #ffffff;

    overflow-y: auto;
}


/* BRAND */

.admin-sidebar-brand {
    padding: 4px 12px 26px;

    border-bottom: 1px solid #292929;
}

.admin-sidebar-brand strong {
    display: block;

    color: #ffffff;

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

    line-height: 1;

    letter-spacing: 2px;
}

.admin-sidebar-brand span {
    display: block;

    margin-top: 8px;

    color: var(--accent);

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

    letter-spacing: 3px;
}


/* NAVIGATION */

.admin-sidebar-nav {
    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-top: 26px;
}

.admin-sidebar-link {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 62px;

    padding: 12px 14px;

    border-radius: 5px;

    color: #bcbcbc;

    transition: 0.2s ease;
}

.admin-sidebar-link:hover {
    background: #191919;
    color: #ffffff;
}

.admin-sidebar-link.active {
    background: #1d1d1d;
    color: #ffffff;
}

.admin-sidebar-link.active::before {
    content: "";

    position: absolute;

    left: 0;
    top: 12px;
    bottom: 12px;

    width: 3px;

    background: var(--accent);
}

.admin-sidebar-link div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.admin-sidebar-link strong {
    font-size: 13px;
    font-weight: 800;
}

.admin-sidebar-link small {
    color: #696969;

    font-size: 10px;
}

.admin-sidebar-link.active small {
    color: #8d8d8d;
}


/* BOTTOM BUTTONS */

.admin-sidebar-bottom {
    display: grid;

    gap: 5px;

    margin-top: auto;
    padding-top: 18px;

    border-top: 1px solid #292929;
}

.admin-sidebar-secondary {
    display: block;

    padding: 11px 14px;

    border-radius: 4px;

    color: #8d8d8d;

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

    transition: 0.2s ease;
}

.admin-sidebar-secondary:hover {
    background: #191919;
    color: #ffffff;
}


/* MAIN CONTENT */

.admin-content {
    min-width: 0;

    background: #efefec;
}

.admin-content-inner {
    width: min(1180px, calc(100% - 70px));

    margin: 0 auto;

    padding: 55px 0 80px;
}
/* =========================================================
   ADMIN SIDEBAR LAYOUT
========================================================= */

.admin-sidebar-nav {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-top: 26px;
}


.admin-sidebar-link {
    display: flex;
    align-items: center;

    min-height: 66px;

    padding: 14px 16px;

    border-radius: 6px;

    color: #dddddd;

    border: 1px solid transparent;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.admin-sidebar-link:hover {
    background: #1b1b1b;

    color: #ffffff;

    border-color: #2c2c2c;

    transform: translateX(3px);
}


.admin-sidebar-link.active {
    background: var(--accent);

    color: var(--dark);

    border-color: var(--accent);
}


.admin-sidebar-link div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.admin-sidebar-link strong {
    font-size: 14px;
    font-weight: 900;

    letter-spacing: 0.2px;
}


.admin-sidebar-link small {
    color: #707070;

    font-size: 10px;

    letter-spacing: 0.2px;
}


.admin-sidebar-link.active small {
    color: rgba(0, 0, 0, 0.58);
}

/* ADMIN SIDEBAR BRAND */

.admin-sidebar-brand {
    padding: 12px 12px 26px;
    border-bottom: 1px solid #2a2a2a;
}

.admin-sidebar-brand strong {
    display: block;

    color: #ffffff;

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

    letter-spacing: 2px;
    line-height: 1;
}

.admin-sidebar-brand span {
    display: block;

    margin-top: 8px;

    color: var(--accent);

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

    letter-spacing: 3.2px;
}
/* CONTENT */

.admin-content {
    min-width: 0;

    background: #eeeeea;
}

.admin-content-inner {
    width: min(1180px, calc(100% - 60px));

    margin: 0 auto;

    padding: 55px 0 70px;
}
/* =========================================================
   ADMIN NAVIGATION
========================================================= */

.admin-navigation {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    margin-bottom: 28px;

    background: #111111;

    border: 1px solid #222222;
}

.admin-nav-link {
    min-height: 86px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 16px 18px;

    color: #ffffff;

    border-right: 1px solid #2b2b2b;

    transition:
        background var(--transition),
        color var(--transition);
}

.admin-nav-link:last-child {
    border-right: none;
}

.admin-nav-link:hover {
    background: #1c1c1c;
}

.admin-nav-link.active {
    background: var(--accent);
    color: var(--dark);
}

.admin-nav-number {
    color: #666666;

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

    letter-spacing: 1px;
}

.admin-nav-link.active .admin-nav-number {
    color: rgba(0, 0, 0, 0.45);
}

.admin-nav-text {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.admin-nav-text strong {
    font-size: 13px;
    font-weight: 900;
}

.admin-nav-text small {
    color: #777777;

    font-size: 10px;
}

.admin-nav-link.active .admin-nav-text small {
    color: rgba(0, 0, 0, 0.6);
}
/* =========================================================
   JOB DETAILS
========================================================= */

.job-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;

    margin-bottom: 30px;
}

.job-details-back {
    display: inline-block;

    margin-bottom: 24px;

    color: var(--text-muted);

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

.job-details-back:hover {
    color: var(--dark);
}

.job-details-header h1 {
    font-size: clamp(48px, 7vw, 76px);

    line-height: 0.9;
    letter-spacing: -4px;
}

.job-details-customer {
    margin-top: 12px;

    color: var(--text-muted);

    font-size: 18px;
}


/* QUICK ACTIONS */

.job-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-bottom: 22px;

    background: var(--dark);
}

.job-quick-action {
    min-height: 110px;

    padding: 22px;

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

    border-right: 1px solid #2c2c2c;

    color: #ffffff;
}

.job-quick-action:last-child {
    border-right: none;
}

.job-quick-action span {
    color: #777777;

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

    letter-spacing: 1px;
    text-transform: uppercase;
}

.job-quick-action strong {
    color: #ffffff;

    font-size: 14px;

    line-height: 1.5;
}

a.job-quick-action:hover strong {
    color: var(--accent);
}


/* MAIN LAYOUT */

.job-details-grid {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 320px;

    gap: 22px;

    align-items: start;
}

.job-details-main {
    display: grid;

    gap: 18px;
}


/* PANELS */

.job-detail-panel {
    background: #ffffff;

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

    padding: 28px;
}

.job-detail-panel-header {
    display: flex;

    gap: 14px;

    align-items: flex-start;

    margin-bottom: 24px;

    padding-bottom: 20px;

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

.job-detail-panel-header > span {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

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

    background: var(--accent);

    color: var(--dark);

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

.job-detail-panel-header h2 {
    font-size: 22px;

    margin-bottom: 3px;
}

.job-detail-panel-header p {
    color: var(--text-muted);

    font-size: 12px;
}


/* SCHEDULE */

.job-schedule-details {
    display: grid;

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

    gap: 16px;
}

.job-schedule-details > div {
    padding: 20px;

    background: #f7f7f5;

    border: 1px solid var(--border-light);
}

.job-schedule-details span,
.job-location-full > span {
    display: block;

    margin-bottom: 6px;

    color: var(--text-muted);

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

    letter-spacing: 1px;
    text-transform: uppercase;
}

.job-schedule-details strong {
    font-size: 16px;
}


/* LOCATION */

.job-location-full {
    padding: 22px;

    background: #111111;

    color: #ffffff;
}

.job-location-full strong {
    display: block;

    font-size: 17px;

    line-height: 1.5;
}

.job-location-actions {
    display: flex;

    gap: 10px;

    margin-top: 20px;
}

.job-location-actions a {
    display: inline-flex;

    min-height: 42px;

    align-items: center;

    padding: 0 14px;

    border: 1px solid #333333;

    color: var(--accent);

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

.job-location-actions a:hover {
    border-color: var(--accent);

    color: #ffffff;
}


/* COPY */

.job-detail-copy {
    color: var(--dark);

    font-size: 15px;
    line-height: 1.8;

    white-space: pre-line;
}

.job-detail-empty {
    color: var(--text-muted);
}


/* SIDEBAR */

.job-details-sidebar {
    display: grid;

    gap: 16px;
}

.job-sidebar-card {
    padding: 24px;

    background: #ffffff;

    border: 1px solid var(--border-light);
}

.job-sidebar-label {
    margin-bottom: 15px;

    color: var(--text-muted);

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

    letter-spacing: 1.2px;
}

.job-sidebar-card h3 {
    font-size: 22px;

    margin-bottom: 8px;
}

.job-sidebar-phone {
    color: #956b00;

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

.job-sidebar-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

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

.job-sidebar-row:last-child {
    border-bottom: none;
}

.job-sidebar-row span {
    color: var(--text-muted);

    font-size: 11px;
}

.job-sidebar-row strong {
    max-width: 170px;

    text-align: right;

    font-size: 12px;
}

.job-status-current {
    margin-bottom: 15px;
}

.job-status-card > p:last-child {
    color: var(--text-muted);

    font-size: 12px;
    line-height: 1.6;
}
/* =========================================================
   JOB DISPATCH DASHBOARD
========================================================= */

.jobs-dashboard-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 38px;
}

.jobs-dashboard-header h1 {
    font-size: clamp(52px, 7vw, 78px);
    line-height: 0.9;
    letter-spacing: -4px;
}

.jobs-dashboard-description {
    max-width: 520px;

    margin-top: 15px;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.7;
}

.jobs-header-actions {
    display: flex;

    gap: 10px;

    flex-shrink: 0;
}

.jobs-secondary-button {
    background: #ffffff;
    color: var(--dark);

    border: 1px solid var(--border-light);
}


/* STATS */

.job-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

    margin-bottom: 26px;
}

.job-stat-card {
    position: relative;

    min-height: 135px;

    padding: 22px;

    background: #ffffff;

    border: 1px solid var(--border-light);
}

.job-stat-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--accent);
}

.job-stat-card span {
    color: var(--text-muted);

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

    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.job-stat-card strong {
    display: block;

    margin-top: 25px;

    color: var(--dark);

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


/* TOOLBAR */

.jobs-toolbar {
    display: grid;

    grid-template-columns: 1fr 220px;

    gap: 16px;

    padding: 20px;

    margin-bottom: 22px;

    background: #ffffff;

    border: 1px solid var(--border-light);
}

.jobs-search,
.jobs-filter {
    display: flex;
    flex-direction: column;
}

.jobs-toolbar label {
    margin-bottom: 7px;

    color: var(--text-muted);

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

    letter-spacing: 1px;
    text-transform: uppercase;
}

.jobs-toolbar input,
.jobs-toolbar select {
    width: 100%;
    min-height: 46px;

    padding: 0 14px;

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

    background: #fafafa;
    color: var(--dark);

    outline: none;
}

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


/* JOB LIST */

.jobs-list {
    display: grid;

    gap: 18px;
}


/* JOB CARD */

.dispatch-job-card {
    background: #ffffff;

    border: 1px solid var(--border-light);
}

.dispatch-job-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;

    padding: 26px 28px;
}

.dispatch-job-id {
    color: var(--accent-hover);

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

    letter-spacing: 1.2px;

    margin-bottom: 5px;
}

.dispatch-job-title h2 {
    color: var(--dark);

    font-size: 28px;
    line-height: 1.05;
}

.dispatch-job-title p {
    color: var(--text-muted);

    margin-top: 5px;

    font-size: 14px;
}


/* STATUS */

.job-status-badge {
    display: inline-flex;

    min-height: 34px;

    align-items: center;

    padding: 0 12px;

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

    letter-spacing: 0.7px;

    text-transform: uppercase;
}

.status-assigned {
    background: #fff3cd;
    color: #7a5a00;
}

.status-en-route {
    background: #e7f1ff;
    color: #245c9f;
}

.status-in-progress {
    background: #eee8ff;
    color: #6545a0;
}

.status-completed {
    background: #e5f6e9;
    color: #28723b;
}


/* SCHEDULE */

.dispatch-schedule {
    display: grid;

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

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

    background: #fafafa;
}

.dispatch-schedule > div {
    padding: 20px 24px;

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

.dispatch-schedule > div:last-child {
    border-right: none;
}

.dispatch-schedule span,
.dispatch-job-details span,
.dispatch-location-address span {
    display: block;

    color: var(--text-muted);

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

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 6px;
}

.dispatch-schedule strong {
    font-size: 14px;
}


/* MAP / LOCATION */

.dispatch-location {
    display: grid;

    grid-template-columns: 46px 1fr auto;

    gap: 16px;

    align-items: center;

    padding: 24px 28px;

    background: #111111;

    color: #ffffff;
}

.dispatch-location-icon {
    width: 42px;
    height: 42px;

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

    background: var(--accent);

    font-size: 18px;
}

.dispatch-location-address span {
    color: #888888;
}

.dispatch-location-address strong {
    font-size: 15px;
}

.dispatch-map-actions {
    display: flex;

    gap: 8px;
}

.map-button {
    display: inline-flex;

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

    gap: 14px;

    min-height: 42px;

    padding: 0 14px;

    border: 1px solid #333333;

    color: #ffffff;

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

    transition:
        border-color var(--transition),
        background var(--transition);
}

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

    background: #191919;
}

.map-button span {
    color: var(--accent);
}


/* DETAILS */

.dispatch-job-details {
    display: grid;

    grid-template-columns: 0.8fr 1fr 1.2fr;

    gap: 0;

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

.dispatch-job-details > div {
    padding: 24px 28px;

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

.dispatch-job-details > div:last-child {
    border-right: none;
}

.dispatch-job-details strong {
    display: block;

    margin-bottom: 5px;
}

.dispatch-job-details a {
    color: #956b00;

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

.dispatch-job-details p {
    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.6;
}


/* FOOTER */

.dispatch-job-footer {
    display: flex;

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

    gap: 20px;

    padding: 18px 28px;
}

.dispatch-job-footer > span {
    color: var(--text-muted);

    font-size: 10px;
}

.dispatch-view-job {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    color: var(--dark);

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

.dispatch-view-job > span {
    color: var(--accent-hover);

    font-size: 17px;
}


/* EMPTY */

.jobs-empty-state,
.jobs-no-results {
    padding: 60px 30px;

    background: #ffffff;

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

    text-align: center;
}

.jobs-empty-state h2 {
    margin-top: 14px;

    font-size: 30px;
}

.jobs-empty-state p {
    margin: 10px auto 24px;

    max-width: 440px;

    color: var(--text-muted);
}

.jobs-empty-icon {
    display: flex;

    width: 48px;
    height: 48px;

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

    margin: auto;

    background: var(--accent);

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

.jobs-no-results {
    display: none;

    color: var(--text-muted);
}
/* =========================================================
   CREATE JOB
========================================================= */

.create-job-intro {
    max-width: 620px;

    margin-top: 14px;

    color: var(--text-muted);

    font-size: 16px;
    line-height: 1.7;
}

.create-job-form {
    display: grid;
    gap: 20px;
}

.job-form-section {
    background: #ffffff;

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

    padding: 32px;
}

.job-form-section-header {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    margin-bottom: 28px;
    padding-bottom: 22px;

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

.job-form-section-header > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    flex-shrink: 0;

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

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

.job-form-section-header h2 {
    font-size: 24px;
    line-height: 1.1;

    margin-bottom: 4px;
}

.job-form-section-header p {
    color: var(--text-muted);

    font-size: 13px;
}

.job-location-grid {
    display: grid;

    grid-template-columns: 1.5fr 0.7fr 0.8fr;

    gap: 18px;
}

.job-schedule-grid {
    display: grid;

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

    gap: 18px;
}

.create-job-submit-area {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 28px 32px;

    background: var(--dark);

    color: #ffffff;
}

.create-job-submit-area p {
    color: #a9a9a9;

    font-size: 13px;
}

.create-job-submit-area strong {
    color: #ffffff;
}

.create-job-submit {
    min-width: 190px;
}
/* =========================================================
   FOLLOW-UP DATE
========================================================= */

.estimate-follow-up-section {
    margin-top: 24px;
    padding-top: 22px;

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

.estimate-follow-up-header {
    margin-bottom: 12px;
}

.estimate-follow-up-header span {
    display: block;

    color: var(--dark);

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

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 4px;
}

.estimate-follow-up-header p {
    color: var(--text-muted);

    font-size: 12px;
}

.estimate-follow-up-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.estimate-follow-up-form input {
    min-height: 42px;

    padding: 0 12px;

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

    background: #ffffff;
    color: var(--dark);

    font-size: 14px;

    outline: none;
}

.estimate-follow-up-form input:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(240, 180, 41, 0.12);
}

.save-follow-up-button {
    min-height: 42px;

    padding: 0 16px;

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

    border: none;

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

    cursor: pointer;

    transition:
        background var(--transition),
        transform var(--transition);
}

.save-follow-up-button:hover {
    background: var(--accent-hover);

    transform: translateY(-1px);
}
/* =========================================================
   INTERNAL JOB NOTES
========================================================= */

.estimate-notes-section {
    margin-top: 24px;
    padding-top: 22px;

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

.estimate-notes-header {
    margin-bottom: 12px;
}

.estimate-notes-header span {
    display: block;

    color: var(--dark);

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

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 4px;
}

.estimate-notes-header p {
    color: var(--text-muted);

    font-size: 12px;
}

.estimate-notes-form textarea {
    width: 100%;
    min-height: 110px;

    padding: 14px;

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

    background: #fafafa;
    color: var(--dark);

    resize: vertical;

    font-size: 14px;
    line-height: 1.6;

    outline: none;
}

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

    box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.12);
}

.save-notes-button {
    min-height: 42px;

    margin-top: 10px;
    padding: 0 16px;

    background: var(--dark);
    color: #ffffff;

    border: none;

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

    cursor: pointer;
}

.save-notes-button:hover {
    background: #2a2a2a;
}
/* =========================================================
   ARCHIVED REQUESTS
========================================================= */

.archived-header {
    align-items: flex-end;
}

.archived-header-description {
    max-width: 620px;

    margin-top: 16px;

    color: var(--text-muted);

    font-size: 16px;
    line-height: 1.7;
}

.archived-header-actions {
    flex-shrink: 0;
}


/* SUMMARY */

.archive-summary {
    display: grid;
    grid-template-columns: 240px 1fr;

    gap: 30px;
    align-items: center;

    margin-bottom: 30px;

    padding: 24px 28px;

    background: var(--dark);

    color: #ffffff;
}

.archive-summary span {
    display: block;

    color: var(--accent);

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

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.archive-summary strong {
    display: block;

    margin-top: 8px;

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

.archive-summary p {
    max-width: 620px;

    color: #aaaaaa;

    line-height: 1.7;
}


/* ARCHIVED CARD */

.archived-card {
    position: relative;
}

.archived-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: #777777;
}

.archived-badge {
    display: inline-flex;
    align-items: center;

    min-height: 38px;

    padding: 0 13px;

    background: #ededed;
    color: #555555;

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

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* FOOTER AREA */

.archived-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 24px;
    padding-top: 22px;

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

.archived-status-info span {
    display: block;

    color: var(--text-muted);

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

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 4px;
}

.archived-status-info strong {
    font-size: 14px;
}


/* RESTORE BUTTON */

.restore-request-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    min-height: 44px;

    padding: 0 17px;

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

    border: none;

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

    cursor: pointer;

    transition:
        background var(--transition),
        transform var(--transition);
}

.restore-request-button:hover {
    background: var(--accent-hover);

    transform: translateY(-2px);
}

.restore-request-button span {
    font-size: 16px;
}


/* EMPTY STATE */

.archive-empty-state {
    padding: 70px 30px;

    background: #ffffff;

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

    text-align: center;
}

.archive-empty-icon {
    width: 54px;
    height: 54px;

    margin: 0 auto 20px;

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

    background: var(--accent);

    color: var(--dark);

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

.archive-empty-state h2 {
    font-size: 30px;

    margin-bottom: 10px;
}

.archive-empty-state p {
    max-width: 450px;

    margin: 0 auto 25px;

    color: var(--text-muted);

    line-height: 1.7;
}
.estimate-archive-form {
    margin-top: 22px;
}

.estimate-archive-button {
    min-height: 42px;
    padding: 0 16px;

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

    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);

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

    cursor: pointer;

    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.estimate-archive-button:hover {
    color: var(--dark);
    border-color: #bdbdbd;
    background: #f4f4f4;
}
/* ADMIN SEARCH + FILTERS */

.admin-filters {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 18px;

    margin-bottom: 28px;
}

.admin-search-box,
.admin-status-filter {
    display: flex;
    flex-direction: column;
}

.admin-filters label {
    margin-bottom: 7px;

    color: var(--text-muted);

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

    letter-spacing: 1px;
    text-transform: uppercase;
}

.admin-filters input,
.admin-filters select {
    min-height: 48px;

    width: 100%;

    padding: 0 14px;

    background: #ffffff;
    color: var(--dark);

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

    outline: none;

    font-size: 14px;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.admin-filters input:focus,
.admin-filters select:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(240, 180, 41, 0.12);
}

.admin-no-results {
    display: none;

    padding: 35px;

    background: #ffffff;

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

    color: var(--text-muted);

    text-align: center;
}
/* ADMIN DASHBOARD STATS */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    margin-bottom: 35px;
}

.admin-stat-card {
    position: relative;

    min-height: 145px;

    padding: 24px;

    background: #ffffff;

    border: 1px solid var(--border-light);
}

.admin-stat-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--accent);
}

.admin-stat-card span {
    display: block;

    color: var(--text-muted);

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

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.admin-stat-card strong {
    display: block;

    margin-top: 24px;

    color: var(--dark);

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

    line-height: 1;
}
/* ADMIN REQUEST CARD TOP */

.estimate-admin-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;

    padding-bottom: 26px;

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

.estimate-admin-identity h2 {
    font-size: 30px;
    line-height: 1.1;
    margin-top: 4px;
}

.estimate-admin-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.estimate-service {
    display: inline-flex;
    align-items: center;

    min-height: 38px;

    padding: 0 13px;

    background: #111111;
    color: #ffffff;

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

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.estimate-status-select {
    min-height: 38px;
    min-width: 140px;

    padding: 0 34px 0 12px;

    border: 1px solid var(--border-light);
    border-radius: 3px;

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

    cursor: pointer;
}

.estimate-created-at {
    display: block;

    margin-top: 8px;

    color: var(--text-muted);

    font-size: 12px;
    font-weight: 600;
}
/* ESTIMATE STATUS */

.estimate-status-area {
    margin-top: 14px;
}

.estimate-status-label {
    display: block;

    color: var(--text-muted);

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

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 6px;
}

.estimate-status-form {
    margin: 0;
}

.estimate-status-select {
    min-width: 140px;

    padding: 10px 32px 10px 12px;

    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);

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

    cursor: pointer;
    outline: none;
}

.estimate-status-select:focus {
    border-color: var(--accent);
}


/* STATUS COLORS */

.status-new {
    background: #fff5d9;
    color: #8a6300;
}

.status-contacted {
    background: #e8f1ff;
    color: #275c9e;
}

.status-scheduled {
    background: #eee8ff;
    color: #6846a5;
}

.status-completed {
    background: #e7f6ea;
    color: #28723b;
}


/* SUBMITTED DATE */

.estimate-created-at {
    display: block;

    margin-top: 8px;

    color: var(--text-muted);

    font-size: 12px;
    font-weight: 700;
}
.admin-page {
    background: #eeeeea;
}

.admin-main {
    min-height: 100vh;
    padding: 70px 0;
}

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

    margin-bottom: 45px;
}

.admin-header h1 {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 0.95;
    letter-spacing: -3px;
}

.estimate-list {
    display: grid;
    gap: 20px;
}

.estimate-admin-card {
    background: #ffffff;

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

    padding: 32px;
}

.estimate-admin-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding-bottom: 24px;

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

.estimate-id {
    display: block;

    color: var(--text-muted);

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

    margin-bottom: 5px;
}

.estimate-admin-top h2 {
    font-size: 28px;
}

.estimate-service {
    align-self: flex-start;

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

    padding: 8px 12px;

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

.estimate-admin-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

    padding: 24px 0;
}

.estimate-admin-details span,
.estimate-admin-message span {
    display: block;

    color: var(--text-muted);

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

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 6px;
}

.estimate-admin-details a {
    font-weight: 800;
}

.estimate-admin-message {
    padding-top: 22px;

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

.estimate-admin-message p {
    line-height: 1.7;
}

.admin-empty {
    background: #ffffff;

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

    padding: 45px;
}

.admin-empty h2 {
    margin-bottom: 8px;
}

.admin-empty p {
    color: var(--text-muted);
}
/* =========================================================
   ADMIN LOGIN
========================================================= */

.admin-login-page {
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.88)
        ),
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=85")
        center / cover no-repeat;
}

.admin-login-wrapper {
    min-height: 100vh;

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

    padding: 30px;
}

.admin-login-card {
    width: 100%;
    max-width: 440px;

    background: #ffffff;

    padding: 42px;
}

.admin-login-card h1 {
    color: var(--dark);

    font-size: 42px;
    letter-spacing: -2px;

    margin-bottom: 10px;
}

.admin-login-description {
    color: var(--text-muted);

    line-height: 1.7;

    margin-bottom: 30px;
}

.admin-login-error {
    background: #fff0f0;
    color: #a22323;

    padding: 12px 14px;

    margin-bottom: 20px;

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

.admin-login-button {
    width: 100%;

    margin-top: 4px;
}

.admin-back-link {
    display: block;

    text-align: center;

    color: var(--text-muted);

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

    margin-top: 22px;
}
/* =========================================================
   WORKER LOGIN
========================================================= */

.worker-login-page {
    min-height: 100vh;

    background: #111111;
}

.worker-login-wrapper {
    min-height: 100vh;

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

    padding: 30px;
}

.worker-login-card {
    width: 100%;
    max-width: 440px;

    padding: 40px;

    background: #ffffff;

    border-top: 4px solid var(--accent);
}

.worker-login-card h1 {
    font-size: 42px;

    line-height: 1;
    letter-spacing: -2px;

    margin-bottom: 12px;
}

.worker-login-description {
    color: var(--text-muted);

    line-height: 1.7;

    margin-bottom: 28px;
}

.worker-login-button {
    width: 100%;
}
/* =========================================================
   WORKER DASHBOARD
========================================================= */

.worker-page {
    background: #eeeeea;
}

.worker-dashboard {
    min-height: 100vh;
    padding: 55px 0;
}

.worker-dashboard-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;

    margin-bottom: 35px;
}

.worker-dashboard-header h1 {
    font-size: clamp(48px, 7vw, 72px);
    line-height: 0.9;
    letter-spacing: -3px;
}

.worker-welcome {
    margin-top: 12px;

    color: var(--text-muted);

    font-size: 15px;
}

.worker-logout-button {
    padding: 11px 16px;

    background: #ffffff;
    color: var(--dark);

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

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

.worker-job-list {
    display: grid;
    gap: 18px;
}

.worker-job-card {
    background: #ffffff;

    border: 1px solid var(--border-light);
}

.worker-job-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding: 24px;
}

.worker-job-number {
    display: block;

    color: var(--accent-hover);

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

    letter-spacing: 1px;

    margin-bottom: 5px;
}

.worker-job-top h2 {
    font-size: 26px;

    line-height: 1.05;
}

.worker-job-top p {
    margin-top: 5px;

    color: var(--text-muted);

    font-size: 14px;
}

.worker-job-schedule {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    background: #f7f7f5;

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

.worker-job-schedule > div {
    padding: 18px 22px;
}

.worker-job-schedule > div:first-child {
    border-right: 1px solid var(--border-light);
}

.worker-job-schedule span,
.worker-job-location span,
.worker-job-section span {
    display: block;

    margin-bottom: 6px;

    color: var(--text-muted);

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

    letter-spacing: 1px;
    text-transform: uppercase;
}

.worker-job-location {
    padding: 22px;

    background: #111111;
    color: #ffffff;
}

.worker-job-location span {
    color: #777777;
}

.worker-job-location strong {
    font-size: 15px;

    line-height: 1.5;
}

.worker-job-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    padding: 18px 22px;

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

.worker-action-button {
    min-height: 48px;

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

    background: var(--dark);
    color: #ffffff;

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

.worker-map-button {
    background: var(--accent);
    color: var(--dark);
}

.worker-job-section {
    padding: 20px 22px;

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

.worker-job-section:last-child {
    border-bottom: none;
}

.worker-job-section p {
    color: var(--dark);

    font-size: 14px;
    line-height: 1.7;

    white-space: pre-line;
}

.worker-empty-state {
    padding: 60px 25px;

    background: #ffffff;

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

    text-align: center;
}

.worker-empty-state h2 {
    margin-bottom: 8px;

    font-size: 28px;
}

.worker-empty-state p {
    color: var(--text-muted);
}
/* =========================================================
   PROFESSIONAL WORKER JOB PROGRESS
========================================================= */

.worker-job-progress {
    padding: 24px 22px;

    background: #f7f7f5;

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


/* HEADER */

.worker-progress-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}

.worker-progress-label {
    display: block;

    margin-bottom: 4px;

    color: var(--text-muted);

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

    letter-spacing: 1px;
    text-transform: uppercase;
}

.worker-progress-current {
    font-size: 17px;
}

.worker-progress-job-id {
    color: var(--text-muted);

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


/* PROGRESS TRACK */

.worker-progress-steps {
    display: grid;

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

    align-items: start;

    margin-bottom: 24px;
}

.worker-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 60px;

    text-align: center;
}

.worker-progress-dot {
    width: 14px;
    height: 14px;

    display: block;

    margin-bottom: 8px;

    background: #d5d5d5;

    border: 3px solid #ffffff;

    box-shadow:
        0 0 0 1px #c7c7c7;

    border-radius: 50%;
}

.worker-progress-step.complete .worker-progress-dot {
    background: var(--accent);

    box-shadow:
        0 0 0 1px var(--accent-hover);
}

.worker-progress-step small {
    color: #999999;

    font-size: 9px;
    font-weight: 800;

    line-height: 1.25;
}

.worker-progress-step.complete small {
    color: var(--dark);
}

.worker-progress-line {
    height: 2px;

    margin-top: 6px;

    background: #dddddd;
}

.worker-progress-line.complete {
    background: var(--accent);
}


/* ACTION AREA */

.worker-progress-action {
    padding-top: 20px;

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

.worker-progress-action form {
    margin: 0;
}

.worker-status-button {
    width: 100%;

    min-height: 66px;

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

    gap: 20px;

    padding: 10px 18px;

    border: none;

    cursor: pointer;

    text-align: left;

    transition:
        background var(--transition),
        transform var(--transition);
}

.worker-status-button:hover {
    transform: translateY(-1px);
}

.worker-status-primary {
    background: var(--accent);
    color: var(--dark);
}

.worker-status-primary:hover {
    background: var(--accent-hover);
}

.worker-status-complete {
    background: #1f7a3d;
    color: #ffffff;
}

.worker-status-complete:hover {
    background: #196532;
}

.worker-action-text {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.worker-action-text small {
    opacity: 0.65;

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

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.worker-action-text strong {
    font-size: 15px;
}

.worker-action-arrow {
    font-size: 22px;
    font-weight: 900;
}
/* =========================================================
   WORKER MANAGEMENT
========================================================= */

.workers-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 35px;

    margin-bottom: 35px;
}

.workers-header h1 {
    font-size: clamp(50px, 7vw, 76px);

    line-height: 0.9;
    letter-spacing: -3px;
}

.workers-header-description {
    max-width: 560px;

    margin-top: 14px;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.7;
}

.workers-error {
    margin-bottom: 20px;

    padding: 14px 16px;

    background: #fff0f0;
    color: #9c2626;

    border: 1px solid #efd0d0;

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


/* LAYOUT */

.workers-layout {
    display: grid;
    grid-template-columns: 380px 1fr;

    gap: 20px;

    align-items: start;
}

.add-worker-panel,
.workers-list-panel {
    background: #ffffff;

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

    padding: 28px;
}

.workers-section-heading {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 25px;
    padding-bottom: 20px;

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

.workers-section-heading > span {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

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

    background: var(--accent);

    color: var(--dark);

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

.workers-section-heading h2 {
    font-size: 22px;

    margin-bottom: 3px;
}

.workers-section-heading p {
    color: var(--text-muted);

    font-size: 12px;
}


/* ADD FORM */

.add-worker-button {
    width: 100%;
}


/* WORKER LIST */

.workers-list {
    display: grid;

    gap: 10px;
}

.worker-admin-card {
    display: grid;

    grid-template-columns: 46px 1fr auto auto;

    gap: 14px;

    align-items: center;

    padding: 16px;

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

    background: #fafafa;
}

.worker-admin-avatar {
    width: 42px;
    height: 42px;

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

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

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

.worker-admin-info h3 {
    font-size: 15px;

    margin-bottom: 3px;
}

.worker-admin-info p {
    color: var(--text-muted);

    font-size: 12px;
}

.worker-active-badge,
.worker-disabled-badge {
    display: inline-flex;

    align-items: center;

    min-height: 28px;

    padding: 0 9px;

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

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.worker-active-badge {
    background: #e6f5e9;
    color: #28723b;
}

.worker-disabled-badge {
    background: #eeeeee;
    color: #666666;
}

.worker-disable-button,
.worker-enable-button {
    min-height: 34px;

    padding: 0 12px;

    background: #ffffff;

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

    color: var(--dark);

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

    cursor: pointer;
}

.worker-disable-button:hover {
    border-color: #b44;
    color: #a22;
}

.worker-enable-button:hover {
    border-color: #3f8f50;
    color: #28723b;
}

.workers-empty {
    padding: 35px;

    text-align: center;

    color: var(--text-muted);

    border: 1px solid var(--border-light);
}
.nav-action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    background: #0b0b0b;
    color: #ffffff;
    padding: 85px 0 28px;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}


/* TOP */

.footer-top {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 100px;
    padding-bottom: 65px;
}

.footer-brand {
    max-width: 470px;
}

.footer-brand-name {
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 2px;
}

.footer-brand-name span {
    display: block;
    color: var(--accent);
    font-size: 15px;
    letter-spacing: 4px;
    margin-top: 9px;
}

.footer-brand p {
    max-width: 420px;
    color: #929292;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 26px;
}


/* CTA */

.footer-estimate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 250px;
    margin-top: 30px;
    padding: 17px 20px;
    background: var(--accent);
    color: #111111;
    font-size: 14px;
    font-weight: 900;
    transition:
        background var(--transition),
        transform var(--transition);
}

.footer-estimate-btn span {
    font-size: 20px;
}

.footer-estimate-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}


/* LINKS */

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column-title {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-column a {
    color: #aaaaaa;
    font-size: 14px;
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}


/* SERVICE STRIP */

.footer-service-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 0;
    border-top: 1px solid #262626;
    border-bottom: 1px solid #262626;
    color: #656565;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.footer-service-line i {
    width: 4px;
    height: 4px;
    flex-shrink: 0;
    background: var(--accent);
    border-radius: 50%;
}


/* BOTTOM */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 25px;
    color: #666666;
    font-size: 11px;
}

.footer-bottom a {
    color: #999999;
    font-weight: 800;
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}
/* =========================================================
   ADMIN MOBILE MENU - DESKTOP DEFAULT
========================================================= */

.admin-mobile-menu-button,
.admin-mobile-overlay {
    display: none;
}
.worker-history-actions {
    display: flex;
    gap: 10px;
}
/* =========================================================
   ESTIMATE SERVICE CHECKBOXES
========================================================= */

.service-selection-group {
    grid-column: 1 / -1;
}

.service-selection-help {
    margin: 6px 0 14px;
    color: #6f6f6f;
    font-size: 14px;
}

.estimate-service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
}

.estimate-service-option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 14px;

    background: #f7f7f5;
    border: 1px solid #deded8;
    border-radius: 6px;

    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.estimate-service-option:hover {
    border-color: #f0b429;
    background: #fffaf0;
}

.estimate-service-option input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    margin: 0;
    padding: 0;

    accent-color: #f0b429;
    cursor: pointer;
}

.estimate-service-option span {
    font-size: 14px;
    font-weight: 700;
    color: #1f1f1f;
}

.other-service-field {
    margin-top: 14px;
}

.other-service-field[hidden] {
    display: none;
}

.other-service-field label {
    display: block;
    margin-bottom: 8px;
}

.other-service-field input {
    width: 100%;
}
/* =========================================================
   ADDRESS AUTOCOMPLETE
========================================================= */

.address-autocomplete-group {
    position: relative;
}

.address-autocomplete-wrapper {
    position: relative;
}

.address-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;

    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    overflow: hidden;
    z-index: 50;
}

.address-suggestions[hidden] {
    display: none;
}

.address-suggestion-item {
    width: 100%;
    display: block;

    padding: 12px 14px;

    background: #ffffff;
    border: none;
    border-bottom: 1px solid #eeeeee;

    color: #1f1f1f;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

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

.address-suggestion-item:hover {
    background: #fff8e8;
    color: #111111;
}
/* =========================================================
   ESTIMATE PROJECT FILES
========================================================= */

.estimate-files-section {
    margin-top: 22px;
    padding: 18px;

    background: #f8f8f6;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
}

.estimate-files-header {
    margin-bottom: 14px;
}

.estimate-files-header span {
    display: block;

    font-size: 14px;
    font-weight: 900;
    color: #1f1f1f;

    margin-bottom: 4px;
}

.estimate-files-header p {
    margin: 0;

    font-size: 13px;
    color: #6f6f6f;
}

.estimate-files-list {
    display: grid;
    gap: 10px;
}

.estimate-file-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    padding: 12px 14px;

    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.estimate-file-link:hover {
    border-color: #f0b429;
    background: #fffaf0;
    transform: translateY(-1px);
}

.estimate-file-name {
    min-width: 0;

    color: #1f1f1f;
    font-size: 14px;
    font-weight: 700;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.estimate-file-link strong {
    flex-shrink: 0;

    padding: 8px 12px;

    background: #f0b429;
    color: #111111;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 900;
}
/* =========================================================
   ESTIMATE FILE UPLOAD
========================================================= */

.estimate-files-group {
    grid-column: 1 / -1;
}

.estimate-file-help {
    margin: 6px 0 12px;
    color: #6f6f6f;
    font-size: 14px;
    line-height: 1.5;
}

.estimate-file-upload {
    position: relative;

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

    min-height: 130px;
    padding: 24px;

    background: #f8f8f6;
    border: 2px dashed #d6d6d0;
    border-radius: 8px;

    text-align: center;
    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.estimate-file-upload:hover {
    border-color: #f0b429;
    background: #fffaf0;
}

.estimate-file-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}

.estimate-file-upload strong {
    display: block;

    margin-bottom: 6px;

    color: #1f1f1f;
    font-size: 15px;
    font-weight: 900;
}

.estimate-file-upload span {
    color: #6f6f6f;
    font-size: 12px;
    font-weight: 600;
}

.estimate-file-list {
    margin-top: 10px;
    display: grid;
    gap: 6px;
}

.estimate-file-list:not(:empty) {
    padding: 12px;

    background: #f8f8f6;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
}
/* =========================================
   ESTIMATE CONTACT BOX
========================================= */

.estimate-contact-box {
    margin-top: 32px;
    padding: 24px;
    background: #111111;
    border-left: 4px solid #f0b429;
    border-radius: 12px;
}

.estimate-contact-box > span {
    display: block;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.estimate-contact-box > a {
    display: inline-block;
    color: #f0b429;
    font-size: 1.35rem;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.estimate-contact-box > a:hover {
    color: #ffffff;
}

.estimate-contact-box p {
    margin: 12px 0 0;
    color: #cfcfcf;
    font-size: 0.95rem;
    line-height: 1.6;
}

.estimate-contact-box p a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.estimate-contact-box p a:hover {
    color: #f0b429;
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials-section {
    padding: 110px 0;
    background: #f7f7f5;
}

.testimonials-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.testimonials-heading .section-title {
    margin-bottom: 18px;
}

.testimonials-intro {
    max-width: 620px;
    color: #6f6f6f;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    margin-bottom: 22px;
    color: #f0b429;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.testimonial-text {
    margin: 0 0 28px;
    color: #1f1f1f;
    font-size: 1.05rem;
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 1px solid #e4e4e4;
}

.testimonial-author strong {
    color: #111111;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: #6f6f6f;
    font-size: 0.85rem;
}


/* SOCIAL AREA */

.testimonials-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    padding: 34px 38px;
    background: #111111;
    border-radius: 14px;
}

.testimonials-social h3 {
    margin: 8px 0 0;
    color: #ffffff;
    font-size: 1.55rem;
}

.social-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 13px 20px;
    border: 1px solid #f0b429;
    border-radius: 8px;
    color: #f0b429;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.social-link:hover {
    background: #f0b429;
    color: #111111;
}
/* =========================================
   HERO HOUSE SLIDESHOW
========================================= */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0;

    transform: scale(1.04);

    transition:
        opacity 1.2s ease,
        transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    display: block;

    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.82) 35%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.20) 100%
    );
}
.hero h1 {
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.hero-description {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-eyebrow {
    color: #f0b429;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

.hero-content {
    position: relative;
    z-index: 2;
}


/* HERO ARROWS */

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;

    width: 48px;
    height: 48px;

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

    transform: translateY(-50%);

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.35);

    color: #ffffff;
    font-size: 1.3rem;

    cursor: pointer;

    backdrop-filter: blur(6px);

    transition: 0.25s ease;
}

.hero-arrow:hover {
    background: #f0b429;
    border-color: #f0b429;
    color: #111111;
}

.hero-arrow-left {
    left: 28px;
}

.hero-arrow-right {
    right: 28px;
}


/* HERO DOTS */

.hero-indicators {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 9px;

    transform: translateX(-50%);
}

.hero-indicator {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition: 0.25s ease;
}

.hero-indicator.active {
    width: 28px;

    border-radius: 20px;

    background: #f0b429;
}

.service-construction {
    background-image: url("../images/new-construction.jpg");
    background-size: cover;
    background-position: center;
}

.service-framing {
    background-image: url("../images/framing.jpg");
    background-size: cover;
    background-position: center;
}

.service-roofing {
    background-image: url("../images/roofing.jpg");
    background-size: cover;
    background-position: center;
}

.service-demolition {
    background-image: url("../images/demolition.jpg");
    background-size: cover;
    background-position: center;
}

.service-junk {
    background-image: url("../images/junk-removal.jpg");
    background-size: cover;
    background-position: center;
}

.service-siding {
    background-image: url("../images/siding.jpg");
    background-size: cover;
    background-position: center;
}

.service-remodel {
    background-image: url("../images/remodel.jpg");
    background-size: cover;
    background-position: center;
}

.service-flooring {
    background-image: url("../images/flooring.jpg");
    background-size: cover;
    background-position: center;
}

.service-windows {
    background-image: url("../images/windows.jpg");
    background-size: cover;
    background-position: center;
}

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

.services-page-hero {
    padding: 150px 0 80px;
    background: #111111;
}

.services-page-hero h1 {
    max-width: 850px;
    margin: 12px 0 20px;
    color: #ffffff;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1;
}

.services-page-hero > .container > p:last-child {
    max-width: 700px;
    color: #bdbdbd;
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-page-section {
    padding: 90px 0;
    background: #f7f7f5;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-page-grid .service-card {
    min-height: 500px;
}

.services-page-cta {
    padding: 0 0 90px;
    background: #f7f7f5;
}

.services-page-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

    padding: 42px;

    background: #111111;
    border-radius: 14px;
}

.services-page-cta-box h2 {
    margin: 8px 0 12px;
    color: #ffffff;
    font-size: 2rem;
}

.services-page-cta-box p:last-child {
    margin: 0;
    color: #bdbdbd;
}


/* TABLET */

@media (max-width: 1000px) {

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

}


/* MOBILE */

@media (max-width: 700px) {

    .services-page-hero {
        padding: 120px 0 60px;
    }

    .services-page-section {
        padding: 60px 0;
    }

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

    .services-page-grid .service-card {
        min-height: 440px;
    }

    .services-page-cta {
        padding-bottom: 60px;
    }

    .services-page-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 22px;
    }

}

/* =========================================
   HOMEPAGE SERVICES - 4 CARD LAYOUT
========================================= */

#services .service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

#services .service-card {
    width: 100%;
    min-height: 420px;
}


/* =========================================
   VIEW ALL SERVICES
========================================= */

.services-view-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.services-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 28px;

    background: #f0b429;
    color: #111111;

    border: 1px solid #f0b429;
    border-radius: 8px;

    font-size: 0.95rem;
    font-weight: 800;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;

    transition: 0.25s ease;
}

.services-view-all:hover {
    background: #d99d16;
    border-color: #d99d16;

    transform: translateY(-2px);
}

/* ESTIMATE CONTACT SOCIAL LINKS */

.estimate-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.estimate-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.estimate-social-link:hover {
    color: #111111;
    background: #f0b429;
    border-color: #f0b429;
    transform: translateY(-2px);
}
.estimate-social-link {
    width: 42px;
    height: 42px;
    padding: 0;
    font-size: 20px;
}

.estimate-social-link i {
    font-size: 20px;
}

/* SOCIAL ICONS */
.testimonials-social .social-links a,
.testimonials-social .social-links a i,
.estimate-contact-box .estimate-social-links a,
.estimate-contact-box .estimate-social-links a i {
    color: #ffffff !important;
}

.testimonials-social .social-links a:hover,
.testimonials-social .social-links a:hover i,
.estimate-contact-box .estimate-social-links a:hover,
.estimate-contact-box .estimate-social-links a:hover i {
    color: #f0b429 !important;
}
.estimate-social-link:hover {
    transform: translateY(-2px);
}
.estimate-contact-box .estimate-social-links a:hover,
.testimonials-social .social-links a:hover {
    background: #f0b429 !important;
}

.estimate-contact-box .estimate-social-links a:hover i,
.testimonials-social .social-links a:hover i {
    color: #111111 !important;
}
/* CONTACT BOX CLEAN LAYOUT */

.estimate-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.estimate-contact-box .estimate-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;

    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
}

.estimate-contact-box .estimate-contact-item i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #f0b429;
    border: 1px solid #333333;
    border-radius: 6px;

    font-size: 15px;
    flex-shrink: 0;
}

.estimate-contact-box .estimate-contact-item strong {
    color: #ffffff;
    font-size: 17px;
}

.estimate-contact-box .estimate-contact-item:hover strong {
    color: #f0b429;
}

.estimate-social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
/* FOLLOW OUR WORK SOCIAL COLORS */

.testimonials-social .instagram-link {
    color: #E1306C !important;
}

.testimonials-social .facebook-link {
    color: #1877F2 !important;
}

.testimonials-social .instagram-link:hover {
    background: #E1306C;
    border-color: #E1306C;
    color: #ffffff !important;
}

.testimonials-social .facebook-link:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #ffffff !important;
}
/* =========================================
   FOOTER LICENSE / COMPLIANCE
========================================= */

.footer-compliance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid #262626;

    color: #999999;

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

.footer-compliance strong {
    color: #f0b429;
    font-weight: 900;
}
.mobile-menu-brand {
    display: flex;
    align-items: center;
}

.mobile-menu-logo {
    width: 180px;
    max-width: 70%;
    height: auto;
    object-fit: contain;
}

.mobile-menu-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #262626;
}

.mobile-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.mobile-highlight i {
    font-size: 18px;
    color: #ffffff;
}

.mobile-highlight span {
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
    color: #d7d7d7;
}
/* ESTIMATE SERVICE DROPDOWN */

.service-dropdown {
    position: relative;
    width: 100%;
}

.service-dropdown-toggle {
    width: 100%;
    min-height: 58px;

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

    padding: 0 18px;

    background: #ffffff;
    border: 1px solid #dddddd;

    color: #171717;

    font: inherit;
    font-weight: 700;

    cursor: pointer;
}

.service-dropdown-toggle i {
    color: #f0b429;
    font-size: 14px;
}

.service-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;

    width: 100%;
    max-height: 320px;
    overflow-y: auto;

    padding: 10px;

    background: #ffffff;

    border: 1px solid #dddddd;

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);

    z-index: 50;
}

.service-dropdown-menu .estimate-service-option {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 12px;

    border: none;
    background: transparent;

    cursor: pointer;
}

.service-dropdown-menu .estimate-service-option:hover {
    background: #f5f4f0;
}

.service-dropdown-menu input[type="checkbox"] {
    width: 18px;
    height: 18px;

    accent-color: #f0b429;
}
@media (max-width: 800px) {
    body.trailer-rental-page {
        padding-top: 0 !important;
    }
}
@media (max-width: 768px) {

    .service-dropdown-menu {
        max-height: 280px;
    }

}

@media (max-width: 768px) {

    .footer-compliance {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

}
/* TABLET */

@media (max-width: 900px) {

    #services .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 650px) {

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

    #services .service-card {
        min-height: 400px;
    }

    .services-view-all-wrap {
        margin-top: 28px;
    }

    .services-view-all {
        width: 100%;
        max-width: 320px;
    }

}
/* MOBILE */

@media (max-width: 768px) {

    .hero-arrow {
        width: 40px;
        height: 40px;

        font-size: 1rem;
    }

    .hero-arrow-left {
        left: 12px;
    }

    .hero-arrow-right {
        right: 12px;
    }

    .hero-indicators {
        bottom: 20px;
    }

    .hero-overlay {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 1;

        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.62) 38%,
            rgba(0, 0, 0, 0.40) 68%,
            rgba(0, 0, 0, 0.18) 100%
        );
    }
    .hero-description {
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
    }

    .hero h1 {
        text-shadow: 0 3px 14px rgba(0, 0, 0, 0.65);
    }

    .hero-eyebrow {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    }
}


/* MOBILE */

@media (max-width: 900px) {

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

    .testimonials-social {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 768px) {

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonials-social {
        margin-top: 40px;
        padding: 26px 22px;
    }

    .social-links {
        width: 100%;
    }

    .social-link {
        flex: 1;
    }

}
/* MOBILE */

@media (max-width: 768px) {

    .estimate-contact-box {
        margin-top: 24px;
        padding: 20px;
    }

    .estimate-contact-box > a {
        font-size: 1.15rem;
    }

    .estimate-contact-box p {
        font-size: 0.9rem;
    }

}
/* =========================================================
   HOMEPAGE DESKTOP POLISH
   Match approved hero/header layout
========================================================= */

@media (min-width: 801px) {

    .site-header .nav-container {
        width: calc(100% - 80px);
        max-width: none;

        min-height: 92px;

        display: flex;
        align-items: center;

        gap: 0;
    }

    .site-header .logo {
        flex-shrink: 0;
        margin-right: 70px;
    }

    .site-header .header-logo-img {
        width: 110px;
        height: 72px;
        object-fit: contain;
    }

    .desktop-nav {
        display: flex;
        align-items: center;

        gap: 48px;

        margin-left: 0;
    }

    .nav-action-buttons {
        display: flex;
        align-items: center;

        gap: 12px;

        margin-left: auto;
        flex-shrink: 0;
    }

    .nav-action-buttons .nav-quote-button {
        min-height: 50px;
        padding: 0 26px;
    }

    .hero .hero-content {
        width: calc(100% - 100px);
        max-width: none;

        padding-top: 165px;
        padding-bottom: 70px;
    }
}

/* =========================================================
   10. TABLET
========================================================= */

@media (max-width: 1000px) {
.worker-history-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.worker-history-actions .worker-logout-button {
    width: 100%;
    text-align: center;
}
    .desktop-nav {
        gap: 20px;
    }

    .about-grid {
        gap: 45px;
    }
}


/* =========================================================
   11. MOBILE
========================================================= */
@media (max-width: 800px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #111111;
    }

    .mobile-menu-overlay {
        z-index: 1998;
    }

    .mobile-menu {
        z-index: 1999;
    }
}
@media (max-width: 800px) {
    .header-inner {
        min-height: 78px;
        align-items: center;
    }
}
@media (max-width: 800px) {
    .site-logo img {
        width: 135px;
        height: auto;
        max-height: 70px;
        object-fit: contain;
    }

    .mobile-menu-logo {
        width: 150px;
        height: auto;
        max-height: 80px;
        object-fit: contain;
    }
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;

        background: #111111;

        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    }
    body {
        padding-top: 112px;
    }
    .estimate-file-link {
        align-items: flex-start;
        flex-direction: column;
    }

    .estimate-file-name {
        width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .estimate-file-link strong {
        width: 100%;
        text-align: center;
    }
.estimate-service-options {
    grid-template-columns: 1fr;
}

.estimate-service-option {
    min-height: 46px;
}
.container {
    width: calc(100% - 16px);
    margin-inline: auto;
}
.mobile-menu-trailer {
    width: 100%;
    min-height: 56px;
    margin-top: 10px;

    font-size: 14px;
    font-weight: 900;
}
.social-connection-overview {
    grid-template-columns: 1fr;

    gap: 14px;

    padding: 16px;
}

.social-connection-divider {
    width: 100%;
    height: 1px;
}

.social-connection-overview-item {
    padding: 4px 0;
}
.worker-job-progress {
    padding: 20px 16px;
}

.worker-progress-step {
    min-width: 48px;
}

.worker-progress-step small {
    font-size: 8px;
}

.worker-status-button {
    min-height: 62px;
}
/* =========================================================
   ADMIN MOBILE SIDEBAR POLISH
========================================================= */

/* HAMBURGER */

.admin-mobile-menu-button {
    position: fixed;

    top: 16px;
    left: 16px;

    z-index: 1202;

    width: 44px;
    height: 44px;

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

    gap: 5px;

    padding: 0;

    background: #111111;

    border: 1px solid #2b2b2b;
    border-radius: 6px;

    cursor: pointer;
}

.admin-mobile-menu-button span {
    width: 19px;
    height: 2px;

    display: block;

    background: #ffffff;
}


/* SIDEBAR */

.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1200;

    width: min(270px, 76vw);
    height: 100dvh;

    padding: 24px 16px 22px;

    background: #0d0d0d;

    transform: translateX(-105%);
    transition: transform 0.28s ease;

    overflow-y: auto;
}

.admin-sidebar.active {
    transform: translateX(0);
}
/* DARK BACKGROUND BEHIND ADMIN MENU */

.admin-mobile-overlay {
    display: block;

    position: fixed;
    inset: 0;

    z-index: 1198;

    background: rgba(0, 0, 0, 0.78);

    opacity: 0;
    visibility: hidden;

    backdrop-filter: blur(2px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.admin-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* BRAND - LEAVE SPACE FOR HAMBURGER */

.admin-sidebar-brand {
    padding:
        10px
        10px
        24px
        66px;

    min-height: 58px;

    border-bottom: 1px solid #292929;
}

.admin-sidebar-brand strong {
    font-size: 18px;
    line-height: 1;
}

.admin-sidebar-brand span {
    margin-top: 7px;

    font-size: 9px;
    letter-spacing: 2.6px;
}


/* MOBILE NAV */

.admin-sidebar-nav {
    margin-top: 20px;

    gap: 4px;
}

.admin-sidebar-link {
    min-height: 58px;

    padding: 11px 14px;

    border-radius: 5px;

    background: transparent;

    color: #bdbdbd;
}


/* ACTIVE PAGE - NO GIANT YELLOW BOX */

.admin-sidebar-link.active {
    position: relative;

    background: #191919;

    color: #ffffff;
}

.admin-sidebar-link.active::before {
    content: "";

    position: absolute;

    left: 0;
    top: 10px;
    bottom: 10px;

    width: 3px;

    background: var(--accent);
}

.admin-sidebar-link.active strong {
    color: #ffffff;
}

.admin-sidebar-link.active small {
    color: #858585;
}


/* OTHER LINKS */

.admin-sidebar-link:hover {
    background: #171717;
    color: #ffffff;
}

.admin-sidebar-link strong {
    font-size: 13px;
}

.admin-sidebar-link small {
    font-size: 9px;
}


/* BOTTOM LINKS */

.admin-sidebar-bottom {
    margin-top: auto;

    padding-top: 18px;

    border-top: 1px solid #292929;
}

.admin-sidebar-secondary {
    padding: 10px 14px;

    color: #8d8d8d;

    font-size: 11px;
}

.admin-sidebar-secondary:hover {
    background: #171717;
    color: #ffffff;
}


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

.workers-layout {
    grid-template-columns: 1fr;
}

.worker-admin-card {
    grid-template-columns: 46px 1fr;
}

.worker-admin-status,
.worker-admin-card form {
    grid-column: 2;
}

.worker-disable-button,
.worker-enable-button {
    width: 100%;
}
.worker-dashboard {
    padding: 35px 0;
}

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

.worker-logout-button {
    width: 100%;
    text-align: center;
}

.worker-job-actions {
    grid-template-columns: 1fr;
}

.worker-job-top {
    flex-direction: column;
}

/* JOB DETAILS MOBILE */

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

.job-details-header h1 {
    letter-spacing: -2px;
}

.job-quick-actions {
    grid-template-columns: repeat(2, 1fr);
}

.job-quick-action {
    border-bottom: 1px solid #2c2c2c;
}

.job-details-grid {
    grid-template-columns: 1fr;
}

.job-details-sidebar {
    order: -1;
}

.job-detail-panel {
    padding: 22px 18px;
}

.job-schedule-details {
    grid-template-columns: 1fr;
}

.job-location-actions {
    flex-direction: column;
}

.job-location-actions a {
    justify-content: center;
}
.jobs-dashboard-header {
    flex-direction: column;
    align-items: flex-start;
}

.jobs-header-actions {
    width: 100%;
}

.jobs-header-actions .button {
    flex: 1;
}

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

.jobs-toolbar {
    grid-template-columns: 1fr;
}

.dispatch-job-top {
    flex-direction: column;
}

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

.dispatch-schedule > div:nth-child(2) {
    border-right: none;
}

.dispatch-location {
    grid-template-columns: 42px 1fr;
}

.dispatch-map-actions {
    grid-column: 1 / -1;

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

.map-button {
    width: 100%;
}

.dispatch-job-details {
    grid-template-columns: 1fr;
}

.dispatch-job-details > div {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
}

.dispatch-job-details > div:last-child {
    border-bottom: none;
}
.job-form-section {
    padding: 24px 20px;
}

.job-location-grid,
.job-schedule-grid {
    grid-template-columns: 1fr;
    gap: 0;
}

.create-job-submit-area {
    flex-direction: column;
    align-items: stretch;

    padding: 24px 20px;
}

.create-job-submit {
    width: 100%;
}
    .archived-header {
    align-items: flex-start;
}

.archive-summary {
    grid-template-columns: 1fr;

    gap: 15px;
}

.archived-card-footer {
    flex-direction: column;
    align-items: flex-start;
}

.restore-request-button {
    width: 100%;
}

.archived-card-footer form {
    width: 100%;
}
    .admin-filters {
    grid-template-columns: 1fr;
}
.admin-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.admin-stat-card {
    min-height: 120px;
    padding: 20px;
}

.admin-stat-card strong {
    margin-top: 18px;
    font-size: 36px;
}
.estimate-admin-top {
    flex-direction: column;
}

.estimate-admin-actions {
    width: 100%;
    justify-content: flex-start;
}

.estimate-status-select {
    min-width: 150px;
}
.hero-eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
    line-height: 1.5;
    gap: 8px;
    margin-bottom: 18px;

    max-width: 300px;
}

.hero-eyebrow::before {
    width: 26px;
}
    /* =========================================
   MOBILE FREE ESTIMATE
========================================= */

    .estimate-section {
        padding: 70px 0;
    }

    .estimate-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .estimate-content {
        position: static;
        width: 100%;
    }

    .estimate-content .section-title {
        max-width: 100%;
        font-size: clamp(42px, 12vw, 58px);
        line-height: 0.95;
        letter-spacing: -2px;
    }

    .estimate-description {
        max-width: 100%;
        margin-top: 20px;

        font-size: 16px;
        line-height: 1.7;
    }

    .estimate-contact-box {
        margin-top: 28px;
        padding-top: 22px;
    }


    /* FORM */

    .estimate-form {
        width: 100%;

        padding: 26px 20px;

        background: #ffffff;

        box-sizing: border-box;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        width: 100%;
        min-width: 0;

        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        display: block;

        width: 100%;
        max-width: 100%;
        min-width: 0;

        box-sizing: border-box;

        font-size: 16px;
    }

    .form-group input,
    .form-group select {
        min-height: 54px;
    }

    .form-group textarea {
        min-height: 140px;
    }

    .estimate-submit {
        width: 100%;
        min-height: 56px;
    }
    /* MOBILE MENU OVERLAY */

    .mobile-menu-overlay {
        display: block;

        position: fixed;
        inset: 0;

        z-index: 998;

        background: rgba(0, 0, 0, 0.65);

        opacity: 0;
        visibility: hidden;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }


/* =========================================
   PROFESSIONAL MOBILE MENU DRAWER
========================================= */
.mobile-menu-note {
    margin-top: auto;
    margin-bottom: 18px;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;
    font-weight: 800;

    line-height: 1.7;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.mobile-menu-overlay {
    display: block;

    position: fixed;
    inset: 0;

    z-index: 998;

    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(2px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


.mobile-menu {
    display: flex;
    flex-direction: column;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 999;

    width: min(360px, 88vw);
    height: 100dvh;

    padding: 24px 24px 22px;

    background:
        linear-gradient(
            180deg,
            #141414 0%,
            #0b0b0b 100%
        );

    border-right: 1px solid rgba(255, 255, 255, 0.08);

    transform: translateX(-105%);

    transition: transform 0.32s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 24px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-brand-logo {
    width: 52px;
    height: 52px;

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

    flex-shrink: 0;
}

.mobile-brand-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    display: block;
}

.mobile-brand-text {
    display: flex;
    flex-direction: column;
}

.mobile-brand-title {
    color: #ffffff;

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

    letter-spacing: 2px;
    line-height: 1;
}

.mobile-brand-subtitle {
    color: var(--accent);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.2px;

    margin-top: 6px;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    color: #ffffff;

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

    cursor: pointer;
}
.mobile-menu-tagline {
    margin-top: 18px;
    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.48);

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

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}


/* LINKS */

.mobile-menu-links {
    display: flex;
    flex-direction: column;

    margin-top: 22px;
}

.mobile-menu-links a {
    position: relative;

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

    padding: 18px 4px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);

    color: rgba(255, 255, 255, 0.86);

    font-size: 19px;
    font-weight: 800;

    transition:
        color var(--transition),
        padding-left var(--transition);
}

.mobile-menu-links a::after {
    content: "→";

    color: var(--accent);

    font-size: 18px;

    opacity: 0.75;
}

.mobile-menu-links a:hover {
    color: #ffffff;

    padding-left: 8px;
}


/* CTA */

.mobile-menu-cta {
    width: 100%;

    min-height: 56px;

    margin-top: auto;

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

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

/* NAV */

.desktop-nav {
    display: none;
}

.nav-container {
    min-height: 112px;

    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-rows: 58px 42px;

    column-gap: 10px;
    row-gap: 6px;

    align-items: center;

    padding: 6px 0;
}


/* HAMBURGER */

.mobile-menu-button {
    display: flex;

    grid-column: 1;
    grid-row: 1;

    justify-self: start;

    width: 42px;
    height: 42px;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: transparent;
    border: none;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 3px 0;

    background: #ffffff;
}


/* LOGO */

.logo {
    grid-column: 2;
    grid-row: 1;

    justify-self: start;
    align-self: center;
}

.header-logo-img {
    width: 105px;
    height: 58px;

    object-fit: contain;
}


/* TOP ACTION BUTTONS */

.nav-action-buttons {
    grid-column: 1 / -1;
    grid-row: 2;

    width: 100%;

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

    gap: 8px;
}

.nav-action-buttons .nav-quote-button {
    width: 100%;
    min-height: 40px;

    padding: 0 8px;

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

    font-size: 10px;
    font-weight: 900;
    line-height: 1;

    text-align: center;
    white-space: nowrap;
}

/* =========================================
   MOBILE HERO
========================================= */
    .hero {
        min-height: 100svh;
        width: 100%;

        background-position: 58% center;
        background-size: cover;
    }

    .hero-content {
        width: 100%;

        padding-top: 145px;
        padding-bottom: 55px;
    }


    /* SMALL SERVICE LINE */

    .hero-eyebrow {
        max-width: 290px;

        margin-bottom: 14px;

        font-size: 8px;
        line-height: 1.45;
        letter-spacing: 1px;

        gap: 7px;
    }

    .hero-eyebrow::before {
        width: 20px;
        flex-shrink: 0;
    }


    /* MAIN HEADLINE */

    .hero h1 {
        max-width: 330px;

        font-size: 44px;

        line-height: 0.92;
        letter-spacing: -2px;
    }


    /* DESCRIPTION */

    .hero-description {
        max-width: 330px;

        margin-top: 20px;

        font-size: 15px;
        line-height: 1.65;
    }


    /* BUTTONS */

    .hero-buttons {
        flex-direction: column;

        gap: 10px;

        margin-top: 24px;
    }

    .hero-buttons .button {
        width: 100%;
        max-width: 300px;

        min-height: 50px;

        padding: 0 18px;

        font-size: 13px;
    }


    /* STATS */

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);

        gap: 0;

        max-width: 100%;

        margin-top: 30px;
        padding-top: 22px;
    }

    .hero-stat {
        min-width: 0;

        padding-right: 10px;
    }

    .hero-stat strong {
        font-size: 18px;
    }

    .hero-stat span {
        font-size: 9px;

        line-height: 1.5;
        letter-spacing: 0.5px;
    }


    /* SERVICES */

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

    .service-card,
    .service-card-content {
        min-height: 400px;
    }


    /* ABOUT */

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

        gap: 40px;
    }

    .about-image,
    .about-image img {
        min-height: 420px;
        height: 420px;
    }

    .about-content h2 {
        letter-spacing: -1.5px;
    }
/* =========================================
   MOBILE FOOTER
========================================= */

.site-footer {
    padding: 60px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;

    padding-bottom: 40px;
}

.footer-brand {
    max-width: 100%;
}

.footer-brand-name {
    font-size: 28px;
}

.footer-brand-name span {
    font-size: 13px;
    letter-spacing: 3px;
}

.footer-brand p {
    max-width: 100%;

    font-size: 15px;
    line-height: 1.7;
}

.footer-estimate-btn {
    width: 100%;
    min-width: 0;
}


/* LINKS */

.footer-links-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.footer-column {
    padding: 25px 0;

    border-top: 1px solid #262626;
}

.footer-column:last-child {
    border-bottom: 1px solid #262626;
}

.footer-column-title {
    margin-bottom: 8px;
}

.footer-column a {
    font-size: 15px;
}


/* SERVICE STRIP */

.footer-service-line {
    justify-content: flex-start;
    flex-wrap: wrap;

    gap: 10px 12px;

    padding: 24px 0;

    font-size: 9px;
}


/* BOTTOM */

.footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;

    padding-top: 22px;
}
/* =========================================================
   ADMIN DASHBOARD - MOBILE LAYOUT FIX
========================================================= */

.admin-shell {
    display: block;
    width: 100%;
    min-height: 100vh;
}

.admin-content {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

.admin-content-inner {
    width: 100%;
    max-width: none;

    margin: 0;
    padding: 82px 18px 55px;
}


/* HEADER */

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

    gap: 22px;
    margin-bottom: 30px;
}

.admin-header h1 {
    font-size: 44px;
    line-height: 0.92;
    letter-spacing: -2px;
}


/* HEADER BUTTONS */

.admin-header > div:last-child {
    width: 100%;

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

    gap: 10px;
}

.admin-header .button {
    width: 100%;
    min-width: 0;

    padding: 0 12px;

    font-size: 11px;
    text-align: center;
}


/* DASHBOARD STATS */

.admin-stats {
    width: 100%;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-bottom: 28px;
}

.admin-stat-card {
    width: 100%;
    min-width: 0;
    min-height: 118px;

    padding: 18px 16px;
}

.admin-stat-card span {
    font-size: 9px;
    line-height: 1.4;
}

.admin-stat-card strong {
    margin-top: 17px;

    font-size: 35px;
}


/* SEARCH + STATUS */

.admin-filters {
    width: 100%;

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

    gap: 14px;

    margin-bottom: 24px;
}

.admin-search-box,
.admin-status-filter {
    width: 100%;
    min-width: 0;
}

.admin-filters input,
.admin-filters select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}


/* ESTIMATE LIST */

.estimate-list {
    width: 100%;
    min-width: 0;

    gap: 14px;
}

.estimate-admin-card {
    width: 100%;
    min-width: 0;

    padding: 22px 18px;
}


/* REQUEST HEADER */

.estimate-admin-top {
    width: 100%;

    flex-direction: column;

    gap: 18px;
}

.estimate-admin-identity {
    width: 100%;
    min-width: 0;
}

.estimate-admin-identity h2 {
    font-size: 25px;
    overflow-wrap: anywhere;
}

.estimate-admin-actions {
    width: 100%;

    justify-content: flex-start;

    gap: 8px;
}


/* CUSTOMER DETAILS */

.estimate-admin-details {
    width: 100%;

    grid-template-columns: 1fr;

    gap: 18px;

    padding: 22px 0;
}

.estimate-admin-details > div {
    min-width: 0;
}

.estimate-admin-details a,
.estimate-admin-details p,
.estimate-admin-details strong {
    overflow-wrap: anywhere;
}


/* MESSAGE / NOTES */

.estimate-admin-message,
.estimate-notes-section,
.estimate-follow-up-section {
    width: 100%;
    min-width: 0;
}

.estimate-notes-form textarea {
    width: 100%;
}


/* FOLLOW-UP */

.estimate-follow-up-form {
    width: 100%;

    flex-direction: column;
    align-items: stretch;
}

.estimate-follow-up-form input,
.save-follow-up-button {
    width: 100%;
}


/* ARCHIVE */

.estimate-archive-form {
    width: 100%;
}

.estimate-archive-button {
    width: 100%;
}
.admin-mobile-menu-button.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.admin-mobile-menu-button {
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        background 0.2s ease;
}
}


/* =========================================================
   12. SMALL PHONES
========================================================= */

@media (max-width: 480px) {
    .container {
        width: calc(100% - 24px);
    }
    .hero .hero-content {
        width: calc(100% - 10px);
        max-width: none;
    }
    .service-card-content {
        padding: 25px;
    }

    .service-card-bottom h3 {
        font-size: 25px;
    }

    .about-image,
    .about-image img {
        min-height: 350px;
        height: 350px;
    }
}
@media (max-width: 800px) {

    .site-header {
        z-index: 1000;
    }

    .mobile-menu-overlay {
        z-index: 2000 !important;
    }

    .mobile-menu {
        z-index: 2001 !important;
    }

}