/* =========================================================
   SERVICE REQUESTS
   UPGRADELIFESTYLE DIRECTORY STYLE
========================================================= */

:root {
    --sr-green: #087B32;
    --sr-green-dark: #009547;
    --sr-green-light: #55b848;

    --sr-text: #182230;
    --sr-muted: #667085;

    --sr-border: #e5e9ef;
    --sr-background: #f6f8fa;
}

.sr-wrapper,
.sr-wrapper *,
.sr-site-header *,
.sr-hero * {
    box-sizing: border-box;
}

body {
    margin: 0;
}


/* =========================================================
   HEADER
========================================================= */

.sr-site-header {
    position: relative;
    z-index: 100;

    width: 100%;
    height: 64px;

    background: #fff;

    border-bottom: 1px solid #edf0f3;

    font-family: "Segoe UI Historic", "Segoe UI", Arial, sans-serif;
}

.sr-header-inner {
    width: 100%;
    max-width: 1380px;
    height: 64px;

    margin: 0 auto;
    padding: 0 28px;

    display: flex;
    align-items: center;
}

.sr-header-logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.sr-header-logo img {
    display: block;

    width: auto;
    height: 30px;
}


/* NAV */

.sr-header-nav {
    display: flex;
    align-items: stretch;

    height: 100%;

    margin-left: 45px;

    gap: 30px;
}

.sr-header-nav a {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    color: #667085;

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

    text-decoration: none;
}

.sr-header-nav a:hover {
    color: var(--sr-green-dark);
}

.sr-header-nav a.active {
    color: var(--sr-green-dark);

    font-weight: 600;
}

.sr-header-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 3px;

    border-radius: 3px 3px 0 0;

    background: var(--sr-green);
}


/* ACCOUNT */

.sr-header-account {
    margin-left: auto;
}

.sr-header-account a {
    color: #344054;

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

    text-decoration: none;
}

.sr-header-account a:hover {
    color: var(--sr-green-dark);
}


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

.sr-hero {
    width: 100%;

    padding: 58px 20px 48px;

    background:
        linear-gradient(
            180deg,
            #f5fbf5 0%,
            #fbfdfb 100%
        );

    border-bottom: 1px solid #eef2ef;

    font-family: "Segoe UI Historic", "Segoe UI", Arial, sans-serif;
}

.sr-hero-inner {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


/* BADGE */

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

    gap: 6px;

    margin-bottom: 14px;

    padding: 5px 10px;

    border: 1px solid #d7efd5;
    border-radius: 20px;

    background: #f3fcf2;

    color: var(--sr-green-dark);

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

.sr-hero-badge i {
    font-size: 9px;
}


/* TITLE */

.sr-hero h1 {
    max-width: 700px;

    margin: 0 auto 8px;

    color: #182230;

    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.7px;
}

.sr-hero-subtitle {
    margin: 0 auto 25px;

    color: #667085;

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


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

.sr-hero-search {
    position: relative;

    width: 100%;
    max-width: 780px;
    height: 56px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    padding: 5px;

    border: 1px solid #e3e8ee;
    border-radius: 10px;

    background: #fff;

    box-shadow:
        0 7px 22px rgba(16, 24, 40, 0.08);
}

.sr-hero-search-icon {
    width: 46px;

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

    color: #98a2b3;

    flex-shrink: 0;
}

.sr-hero-search input[type="search"] {
    min-width: 0;
    flex: 1;

    height: 44px;

    padding: 0 8px;

    border: 0 !important;
    outline: 0 !important;

    background: transparent;

    box-shadow: none !important;

    color: #344054;

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

.sr-hero-search input::placeholder {
    color: #98a2b3;
}

.sr-hero-search button {
    height: 44px;

    padding: 0 21px;

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

    gap: 8px;

    flex-shrink: 0;

    border: 0;
    border-radius: 7px;

    background: var(--sr-green);

    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.15s ease,
        transform 0.15s ease;
}

.sr-hero-search button:hover {
    background: var(--sr-green-dark);
}

.sr-hero-search button i {
    font-size: 10px;
}


/* =========================================================
   SEARCH SUGGESTIONS
========================================================= */

.sr-hero-suggestions {
    margin-top: 13px;

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

    flex-wrap: wrap;

    gap: 8px;

    color: #98a2b3;

    font-size: 10px;
}

.sr-hero-suggestions a {
    padding: 3px 7px;

    border-radius: 4px;

    color: #667085;

    text-decoration: none;
}

.sr-hero-suggestions a:hover {
    background: var(--sr-green-light);

    color: var(--sr-green-dark);
}


/* =========================================================
   PAGE BACKGROUND
========================================================= */

.sr-page-background {
    min-height: 600px;

    background: var(--sr-background);

    padding: 34px 0 60px;

    font-family: "Segoe UI Historic", "Segoe UI", Arial, sans-serif;
}

.sr-wrapper {
    width: 100%;
    max-width: 1380px;

    margin: 0 auto;
    padding: 0 28px;
}


/* =========================================================
   DIRECTORY LAYOUT
========================================================= */

.sr-directory-layout {
    display: grid;

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

    gap: 24px;

    align-items: start;
}


/* =========================================================
   FILTER SIDEBAR
========================================================= */

.sr-filter-sidebar {
    position: sticky;
    top: 20px;

    min-width: 0;
}

.sr-filter-card {
    padding: 18px;

    border: 1px solid var(--sr-border);
    border-radius: 10px;

    background: #fff;

    box-shadow:
        0 1px 3px rgba(16, 24, 40, 0.03);
}

.sr-filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 20px;
}

.sr-filter-heading h3 {
    display: flex;
    align-items: center;

    gap: 7px;

    margin: 0;

    color: #182230;

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

.sr-clear-filter {
    color: #98a2b3;

    font-size: 10px;

    text-decoration: none;
}

.sr-clear-filter:hover {
    color: var(--sr-green-dark);
}


/* FILTER COUNT */

.sr-filter-count {
    min-width: 18px;
    height: 18px;

    padding: 0 5px;

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

    border-radius: 20px;

    background: var(--sr-green);

    color: #fff;

    font-size: 9px;
}


/* =========================================================
   FILTER INPUTS
========================================================= */

.sr-filter-group {
    margin-bottom: 17px;
}

.sr-filter-group > label {
    display: block;

    margin-bottom: 7px;

    color: #475467;

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

.sr-filter-group select,
.sr-filter-group input {
    width: 100%;
    height: 38px;

    padding: 0 10px;

    border: 1px solid #e1e6eb;
    border-radius: 6px;

    outline: none;

    background: #fff;

    color: #475467;

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

.sr-filter-group select:focus,
.sr-filter-group input:focus {
    border-color: var(--sr-green);

    box-shadow:
        0 0 0 2px rgba(85, 184, 72, 0.08);
}

.sr-filter-date-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 7px;
}

.sr-filter-group .sr-small-label {
    display: block;

    margin-bottom: 5px;

    color: #98a2b3;

    font-size: 9px;
    font-weight: 500;
}


/* =========================================================
   FILTER BUTTON
========================================================= */

.sr-filter-button {
    width: 100%;
    height: 39px;

    border: 0;
    border-radius: 6px;

    background: var(--sr-green);

    color: #fff;

    font-family: inherit;
    font-size: 11px;
    font-weight: 600;

    cursor: pointer;
}

.sr-filter-button:hover {
    background: var(--sr-green-dark);
}

.sr-filter-reset {
    display: block;

    margin-top: 11px;

    color: #98a2b3;

    text-align: center;

    font-size: 10px;

    text-decoration: none;
}

.sr-filter-reset:hover {
    color: var(--sr-green-dark);
}


/* =========================================================
   VENDOR CTA
========================================================= */

.sr-vendor-box {
    margin-top: 14px;
    padding: 17px;

    border: 1px solid #dcefd9;
    border-radius: 10px;

    background: #f6fcf5;
}

.sr-vendor-icon {
    width: 31px;
    height: 31px;

    margin-bottom: 11px;

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

    border-radius: 7px;

    background: var(--sr-green);

    color: #fff;

    font-size: 12px;
}

.sr-vendor-box strong {
    display: block;

    margin-bottom: 5px;

    color: #182230;

    font-size: 12px;
}

.sr-vendor-box p {
    margin: 0 0 12px;

    color: #667085;

    font-size: 10px;
    line-height: 1.55;
}

.sr-vendor-box a {
    width: 100%;
    height: 34px;

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

    gap: 6px;

    border-radius: 6px;

    background: var(--sr-green);

    color: #fff;

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

    text-decoration: none;
}

.sr-vendor-box a:hover {
    background: var(--sr-green-dark);
}


/* =========================================================
   RESULTS HEADER
========================================================= */

.sr-results {
    min-width: 0;
}

.sr-results-header {
    min-height: 48px;

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

    margin-bottom: 10px;

    padding: 0 4px;
}

.sr-results-count {
    color: #667085;

    font-size: 11px;
}

.sr-results-count strong {
    color: #182230;

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


/* =========================================================
   RESULT CARDS
========================================================= */

.sr-result-list {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.sr-result-card {
    width: 100%;

    padding: 17px 18px;

    border: 1px solid var(--sr-border);
    border-radius: 9px;

    background: #fff;

    cursor: pointer;

    box-shadow:
        0 1px 2px rgba(16, 24, 40, 0.025);

    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.15s ease;
}

.sr-result-card:hover {
    border-color: #cfe7cc;

    box-shadow:
        0 4px 12px rgba(16, 24, 40, 0.055);

    transform: translateY(-1px);
}

.sr-result-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.sr-result-content {
    min-width: 0;
    flex: 1;
}


/* ID */

.sr-result-id {
    margin-bottom: 4px;

    color: #98a2b3;

    font-size: 9px;
    font-weight: 500;
}


/* CATEGORY */

.sr-result-category {
    margin-bottom: 4px;

    color: #667085;

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

    text-transform: uppercase;

    letter-spacing: 0.03em;
}


/* SERVICE */

.sr-result-service {
    margin: 0 0 8px;

    color: #182230;

    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}


/* DETAILS */

.sr-result-details {
    max-width: 900px;

    margin-bottom: 11px;

    padding: 9px 11px;

    border-radius: 5px;

    background: #f7f9fa;

    color: #667085;

    font-size: 10px;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* META */

.sr-result-meta {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 6px;

    color: #98a2b3;

    font-size: 9px;
}

.sr-result-meta-item {
    display: inline-flex;
    align-items: center;

    gap: 5px;
}

.sr-result-meta i {
    font-size: 8px;
}

.sr-result-separator {
    color: #d0d5dd;
}


/* =========================================================
   STATUS
========================================================= */

.sr-result-status {
    min-width: 85px;

    text-align: right;

    flex-shrink: 0;
}

.sr-status {
    display: inline-flex;
    align-items: center;

    padding: 4px 8px;

    border-radius: 20px;

    background: #f2f4f7;

    color: #667085;

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

    white-space: nowrap;
}

.sr-status-open {
    background: #ecfdf3;
    color: #039855;
}

.sr-status-open::before {
    content: "";

    width: 5px;
    height: 5px;

    margin-right: 5px;

    border-radius: 50%;

    background: #12b76a;
}

.sr-status-closed {
    background: #f2f4f7;

    color: #667085;
}


/* UNLOCK */

.sr-unlocked,
.sr-fully-taken {
    display: inline-flex;
    align-items: center;

    gap: 4px;

    margin-top: 6px;
    padding: 4px 7px;

    border-radius: 20px;

    font-size: 8px;
    font-weight: 600;
}

.sr-unlocked {
    background: #ecfdf3;
    color: #039855;
}

.sr-fully-taken {
    background: #f2f4f7;
    color: #667085;
}


/* =========================================================
   EMPTY
========================================================= */

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

    border: 1px solid var(--sr-border);
    border-radius: 9px;

    background: #fff;

    text-align: center;
}

.sr-empty-icon {
    width: 40px;
    height: 40px;

    margin: 0 auto 12px;

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

    border-radius: 50%;

    background: var(--sr-green-light);

    color: var(--sr-green);
}

.sr-empty h3 {
    margin: 0 0 6px;

    color: #182230;

    font-size: 15px;
}

.sr-empty p {
    margin: 0 auto 16px;

    max-width: 500px;

    color: #667085;

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

.sr-empty-reset {
    display: inline-flex;

    padding: 8px 13px;

    border-radius: 6px;

    background: var(--sr-green);

    color: #fff;

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

    text-decoration: none;
}


/* =========================================================
   PAGINATION
========================================================= */

.sr-pagination {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: 25px;
}

.sr-page {
    min-width: 31px;
    height: 31px;

    padding: 0 8px;

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

    border: 1px solid #e1e6eb;
    border-radius: 5px;

    background: #fff;

    color: #667085;

    font-size: 10px;

    text-decoration: none;
}

.sr-page:hover {
    border-color: var(--sr-green);

    color: var(--sr-green-dark);
}

.sr-page.active {
    border-color: var(--sr-green);

    background: var(--sr-green);

    color: #fff;
}

.sr-page-dots {
    color: #98a2b3;

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .sr-directory-layout {
        grid-template-columns:
            220px
            minmax(0, 1fr);
    }

    .sr-wrapper {
        padding-left: 18px;
        padding-right: 18px;
    }

}


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

@media (max-width: 700px) {

    .sr-site-header {
        height: 58px;
    }

    .sr-header-inner {
        height: 58px;

        padding: 0 16px;
    }

    .sr-header-logo img {
        height: 25px;
    }

    .sr-header-nav {
        display: none;
    }

    .sr-header-account a {
        font-size: 11px;
    }


    /* HERO */

    .sr-hero {
        padding:
            38px 16px
            35px;
    }

    .sr-hero h1 {
        font-size: 27px;
    }

    .sr-hero-subtitle {
        font-size: 12px;
    }


    /* SEARCH */

    .sr-hero-search {
        height: auto;

        padding: 5px;
    }

    .sr-hero-search-icon {
        width: 37px;
    }

    .sr-hero-search input[type="search"] {
        font-size: 12px;
    }

    .sr-hero-search button {
        width: 44px;

        padding: 0;

        font-size: 0;
    }

    .sr-hero-search button i {
        font-size: 11px;
    }


    /* DIRECTORY */

    .sr-page-background {
        padding-top: 20px;
    }

    .sr-wrapper {
        padding: 0 14px;
    }

    .sr-directory-layout {
        display: block;
    }

    .sr-filter-sidebar {
        position: static;

        margin-bottom: 18px;
    }

    .sr-filter-date-grid {
        grid-template-columns:
            1fr 1fr;
    }


    /* RESULTS */

    .sr-result-card {
        padding: 15px;
    }

    .sr-result-top {
        display: block;
    }

    .sr-result-status {
        min-width: 0;

        margin-top: 12px;

        text-align: left;
    }

    .sr-result-service {
        font-size: 14px;
    }

}

/* =========================================================
   SERVICE REQUESTS
   TYPOGRAPHY SIZE UPDATE
   Match Business Directory
========================================================= */


/* =========================================================
   HEADER
========================================================= */

.sr-site-header {
    height: 72px;
}

.sr-header-inner {
    height: 72px;
    max-width: 1400px;
}

.sr-header-logo img {
    height: 39px;
    max-width: 190px;
}

.sr-header-nav a {
    font-size: 14px;
    font-weight: 600;
}

.sr-header-account a {
    font-size: 14px;
    font-weight: 600;
}


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

.sr-hero {
    padding: 62px 20px 56px;
}

.sr-hero-inner {
    max-width: 1050px;
}

.sr-hero-badge {
    margin-bottom: 15px;
    padding: 7px 12px;

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

.sr-hero-badge i {
    font-size: 11px;
}

.sr-hero h1 {
    max-width: 850px;

    margin-bottom: 12px;

    font-size: clamp(
        30px,
        4vw,
        45px
    );

    line-height: 1.15;
    font-weight: 800;

    letter-spacing: -0.035em;
}

.sr-hero-subtitle {
    margin-bottom: 30px;

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


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

.sr-hero-search {
    max-width: 850px;

    min-height: 62px;
    height: 62px;

    padding: 6px;

    border-radius: 14px;
}

.sr-hero-search-icon {
    width: 54px;

    font-size: 18px;
}

.sr-hero-search input[type="search"] {
    height: 48px;

    padding-right: 12px;

    font-size: 15px;
}

.sr-hero-search button {
    min-height: 48px;
    height: 48px;

    padding: 0 23px;

    border-radius: 10px;

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

.sr-hero-search button i {
    font-size: 12px;
}


/* Search suggestions */

.sr-hero-suggestions {
    margin-top: 15px;

    gap: 7px;

    font-size: 12px;
}

.sr-hero-suggestions a {
    padding: 5px 9px;

    border: 1px solid #e5e7eb;
    border-radius: 100px;

    background: #fff;

    font-size: 11px;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.sr-page-background {
    padding: 38px 0 60px;
}

.sr-wrapper {
    max-width: 1400px;
}

.sr-directory-layout {
    grid-template-columns:
        280px
        minmax(0, 1fr);

    gap: 28px;
}


/* =========================================================
   FILTER PANEL
========================================================= */

.sr-filter-card {
    padding: 22px;

    border-radius: 14px;
}

.sr-filter-heading {
    padding-bottom: 18px;
    margin-bottom: 20px;

    border-bottom: 1px solid #f1f5f9;
}

.sr-filter-heading h3 {
    font-size: 17px;
    font-weight: 800;
}

.sr-filter-count {
    min-width: 20px;
    height: 20px;

    font-size: 10px;
}

.sr-clear-filter {
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   FILTER FIELDS
========================================================= */

.sr-filter-group {
    margin-bottom: 21px;
}

.sr-filter-group > label {
    margin-bottom: 8px;

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

.sr-filter-group select,
.sr-filter-group input {
    height: 43px;

    padding: 0 12px;

    border-radius: 9px;

    font-size: 12px;
}

.sr-filter-group .sr-small-label {
    margin-bottom: 6px;

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

.sr-filter-date-grid {
    gap: 8px;
}


/* =========================================================
   FILTER BUTTON
========================================================= */

.sr-filter-button {
    min-height: 43px;
    height: 43px;

    border-radius: 9px;

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

.sr-filter-reset {
    margin-top: 10px;

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


/* =========================================================
   VENDOR CTA
========================================================= */

.sr-vendor-box {
    margin-top: 16px;
    padding: 18px;

    border-radius: 12px;
}

.sr-vendor-icon {
    width: 40px;
    height: 40px;

    margin-bottom: 13px;

    border-radius: 10px;

    font-size: 16px;
}

.sr-vendor-box strong {
    margin-bottom: 7px;

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

.sr-vendor-box p {
    margin-bottom: 14px;

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

.sr-vendor-box a {
    min-height: 40px;
    height: 40px;

    padding: 0 12px;

    border-radius: 8px;

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


/* =========================================================
   RESULTS HEADER
========================================================= */

.sr-results-header {
    min-height: 56px;

    margin-bottom: 16px;
}

.sr-results-count {
    font-size: 12px;
}

.sr-results-count strong {
    font-size: 21px;
    font-weight: 800;
}


/* =========================================================
   RESULT CARDS
========================================================= */

.sr-result-list {
    gap: 13px;
}

.sr-result-card {
    padding: 21px 23px;

    border-radius: 14px;
}

.sr-result-top {
    gap: 20px;
}


/* Request ID */

.sr-result-id {
    margin-bottom: 5px;

    font-size: 11px;
}


/* Category */

.sr-result-category {
    margin-bottom: 6px;

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


/* Service title */

.sr-result-service {
    margin-bottom: 10px;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}


/* Request details */

.sr-result-details {
    margin-bottom: 14px;

    padding: 12px 14px;

    border-radius: 9px;

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   RESULT META
========================================================= */

.sr-result-meta {
    gap: 8px 18px;

    font-size: 11px;
}

.sr-result-meta-item {
    gap: 7px;
}

.sr-result-meta i {
    font-size: 11px;
}


/* =========================================================
   STATUS
========================================================= */

.sr-result-status {
    min-width: 100px;
}

.sr-status {
    padding: 5px 9px;

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

.sr-status-open::before {
    width: 6px;
    height: 6px;
}

.sr-unlocked,
.sr-fully-taken {
    margin-top: 8px;

    padding: 5px 9px;

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


/* =========================================================
   EMPTY RESULTS
========================================================= */

.sr-empty {
    padding: 54px 30px;

    border-radius: 14px;
}

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

    margin-bottom: 17px;

    border-radius: 14px;

    font-size: 20px;
}

.sr-empty h3 {
    margin-bottom: 8px;

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

.sr-empty p {
    font-size: 12px;
    line-height: 1.6;
}

.sr-empty-reset {
    min-height: 40px;

    padding: 0 14px;

    align-items: center;

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


/* =========================================================
   PAGINATION
========================================================= */

.sr-pagination {
    gap: 5px;

    margin-top: 27px;
}

.sr-page {
    min-width: 36px;
    height: 36px;

    padding: 0 9px;

    border-radius: 8px;

    font-size: 11px;
}

.sr-page-dots {
    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .sr-directory-layout {
        grid-template-columns:
            240px
            minmax(0, 1fr);

        gap: 20px;
    }

    .sr-filter-card {
        padding: 18px;
    }

}


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

@media (max-width: 700px) {

    .sr-site-header,
    .sr-header-inner {
        height: 62px;
    }

    .sr-header-logo img {
        height: 32px;
        max-width: 165px;
    }


    /* Hero */

    .sr-hero {
        padding: 37px 14px 34px;
    }

    .sr-hero-badge {
        margin-bottom: 12px;

        font-size: 10px;
    }

    .sr-hero h1 {
        font-size: 29px;

        letter-spacing: -0.025em;
    }

    .sr-hero-subtitle {
        margin-bottom: 22px;

        font-size: 14px;
    }


    /* Search */

    .sr-hero-search {
        min-height: 55px;
        height: 55px;

        padding: 5px;

        border-radius: 12px;
    }

    .sr-hero-search-icon {
        width: 42px;

        font-size: 15px;
    }

    .sr-hero-search input[type="search"] {
        height: 43px;

        font-size: 13px;
    }

    .sr-hero-search button {
        width: 45px;
        min-height: 43px;
        height: 43px;

        padding: 0;
    }

    .sr-hero-search button i {
        font-size: 12px;
    }

    .sr-hero-suggestions {
        margin-top: 12px;

        font-size: 10px;
    }

/* Mobile */
    .directory-search-button {

        min-width: 45px;

        min-height: 43px;

        padding: 0 14px;

    }


    .directory-search-button span {

        display: none;

    }

    /* Main */

    .sr-page-background {
        padding-top: 22px;
    }


    /* Results */

    .sr-results-header {
        min-height: auto;

        margin-bottom: 14px;
    }

    .sr-results-count {
        font-size: 12px;
    }

    .sr-results-count strong {
        font-size: 18px;
    }


    /* Cards */

    .sr-result-card {
        padding: 17px;

        border-radius: 12px;
    }

    .sr-result-service {
        font-size: 15px;
    }

    .sr-result-id,
    .sr-result-category,
    .sr-result-meta,
    .sr-result-details {
        font-size: 11px;
    }

    .sr-status,
    .sr-unlocked,
    .sr-fully-taken {
        font-size: 9px;
    }

}

/* =========================================================
   SERVICE REQUEST SHARED COLOUR OVERRIDES
   Header + footer links/buttons = GREEN
   Main Service Request content = ORANGE
========================================================= */

.service-requests-page,
.service-detail-page {
    --service-header-green: #008F44;
    --service-header-green-dark: #007338;
    --service-header-green-light: #E8F7EF;

    --service-main-orange: #FB6C13;
    --service-main-orange-dark: #D9530A;
    --service-main-orange-light: #FFF3EB;
}

/* Shared directory-style HEADER used by the Service Request PHP pages */
.service-requests-page .directory-nav-link:hover,
.service-requests-page .directory-nav-link.active,
.service-requests-page .directory-login-link:hover,
.service-detail-page .directory-nav-link:hover,
.service-detail-page .directory-nav-link.active,
.service-detail-page .directory-login-link:hover {
    color: var(--service-header-green-dark);
}

.service-requests-page .directory-nav-link.active::after,
.service-detail-page .directory-nav-link.active::after {
    background: var(--service-header-green) !important;
}

.service-requests-page .directory-signup-button,
.service-detail-page .directory-signup-button {
    background: var(--service-header-green) !important;
    border-color: var(--service-header-green) !important;
    color: #fff !important;
}

.service-requests-page .directory-signup-button:hover,
.service-detail-page .directory-signup-button:hover {
    background: var(--service-header-green-dark) !important;
    border-color: var(--service-header-green-dark) !important;
}

/* Mobile header */
.service-requests-page .directory-mobile-menu a:hover,
.service-detail-page .directory-mobile-menu a:hover {
    color: var(--service-header-green-dark) !important;
    background: var(--service-header-green-light) !important;
}

/* Shared directory-style FOOTER on Service Request pages */
.service-requests-page .directory-footer a:hover,
.service-detail-page .directory-footer a:hover {
    color: var(--service-header-green) !important;
}

/* Listing MAIN area = ORANGE */
.service-requests-page .sr-hero-badge {
    border-color: #FFD9C2;
    background: var(--service-main-orange-light);
    color: var(--service-main-orange-dark);
}

.service-requests-page .sr-hero-search button,
.service-requests-page .sr-filter-count,
.service-requests-page .sr-filter-button,
.service-requests-page .sr-vendor-icon,
.service-requests-page .sr-vendor-box a,
.service-requests-page .sr-empty-reset,
.service-requests-page .sr-page.active {
    background: var(--service-main-orange) !important;
}

.service-requests-page .sr-hero-search button:hover,
.service-requests-page .sr-filter-button:hover,
.service-requests-page .sr-vendor-box a:hover {
    background: var(--service-main-orange-dark) !important;
}

.service-requests-page .sr-hero-suggestions a:hover,
.service-requests-page .sr-empty-icon {
    background: var(--service-main-orange-light);
    color: var(--service-main-orange-dark);
}

.service-requests-page .sr-filter-group select:focus,
.service-requests-page .sr-filter-group input:focus {
    border-color: var(--service-main-orange);
    box-shadow: 0 0 0 2px rgba(251, 108, 19, 0.10);
}

.service-requests-page .sr-clear-filter:hover,
.service-requests-page .sr-filter-reset:hover,
.service-requests-page .sr-page:hover {
    color: var(--service-main-orange-dark);
}

.service-requests-page .sr-page:hover,
.service-requests-page .sr-page.active {
    border-color: var(--service-main-orange);
}

.service-requests-page .sr-vendor-box {
    border-color: #FFD9C2;
    background: #FFF8F3;
}

.service-requests-page .sr-result-card:hover {
    border-color: #FFD0B3;
}

/* =========================================================
   UPGRADELIFESTYLE
   SERVICE REQUEST DETAILS
========================================================= */

:root {
    /* UpgradeLifestyle Green */
    --srd-green: #FB6C13;
    --srd-green-dark: #D9530A;
    --srd-green-light: #FFF3EB;

    /* Text */
    --srd-text: #111827;
    --srd-text-secondary: #475569;
    --srd-muted: #64748b;
    --srd-light: #94a3b8;

    /* Borders */
    --srd-border: #e5e7eb;
    --srd-border-light: #f1f5f9;

    /* Background */
    --srd-background: #f8fafc;
}

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

.service-detail-page {
    min-height: 100vh;

    background: var(--srd-background);
}

.service-detail-main {
    padding: 32px 0 60px;
}

.service-detail-container {
    width: min(
        1200px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.service-detail-breadcrumb {
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    color: var(--srd-light);

    font-size: 11px;
}

.service-detail-breadcrumb a {
    color: var(--srd-muted);
}

.service-detail-breadcrumb a:hover {
    color: var(--srd-green-dark);
}

.service-detail-breadcrumb i {
    font-size: 8px;
}


/* =========================================================
   GRID
========================================================= */

.service-detail-grid {
    display: grid;

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

    gap: 25px;

    align-items: start;
}


/* =========================================================
   MAIN CARD
========================================================= */

.service-detail-card {
    border: 1px solid var(--srd-border);
    border-radius: 16px;

    background: #fff;

    overflow: hidden;

    box-shadow:
        0 1px 3px
        rgba(15, 23, 42, 0.05);
}


/* =========================================================
   HEADER
========================================================= */

.service-detail-header {
    padding: 30px;

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

.service-detail-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;
}

.service-detail-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 18px;

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

    border-radius: 13px;

    background: var(--srd-green-light);

    color: var(--srd-green);

    font-size: 21px;
}

.service-detail-header h1 {
    margin: 0 0 8px;

    color: var(--srd-text);

    font-size: clamp(
        24px,
        3vw,
        34px
    );

    line-height: 1.25;

    letter-spacing: -0.025em;

    font-weight: 800;
}

.service-detail-request-id {
    margin: 0;

    color: var(--srd-muted);

    font-size: 12px;
}


/* =========================================================
   STATUS
========================================================= */

.service-detail-status {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 7px 11px;

    border-radius: 100px;

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

.service-detail-status::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;
}

.service-detail-status.open {
    background: #f0fdf4;
    color: #16a34a;
}

.service-detail-status.open::before {
    background: #16a34a;
}

.service-detail-status.closed {
    background: #f1f5f9;
    color: #64748b;
}

.service-detail-status.closed::before {
    background: #94a3b8;
}


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

.service-detail-section {
    padding: 27px 30px;

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

.service-detail-section:last-child {
    border-bottom: 0;
}

.service-detail-section h2 {
    margin: 0 0 18px;

    color: var(--srd-text);

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

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

    gap: 15px;

    margin-bottom: 18px;
}

.service-section-heading h2 {
    margin: 0;
}


/* =========================================================
   INFO GRID
========================================================= */

.service-info-grid {
    display: grid;

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

    gap: 20px 30px;
}

.service-info-item {
    min-width: 0;
}

.service-info-label {
    display: block;

    margin-bottom: 6px;

    color: var(--srd-light);

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

    letter-spacing: 0.06em;

    text-transform: uppercase;
}

.service-info-value {
    color: #334155;

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

    word-break: break-word;
}

.service-info-value i {
    margin-right: 6px;

    color: var(--srd-light);

    font-size: 11px;
}


/* =========================================================
   ENQUIRY DETAILS
========================================================= */

.service-enquiry-box {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 17px;

    border: 1px solid var(--srd-border);
    border-radius: 11px;

    background: var(--srd-background);
}

.service-enquiry-icon {
    width: 39px;
    height: 39px;

    flex-shrink: 0;

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

    border-radius: 9px;

    background: var(--srd-green-light);

    color: var(--srd-green);
}

.service-enquiry-content {
    color: #334155;

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


/* =========================================================
   CUSTOMER INFORMATION
========================================================= */

.service-contact {
    font-weight: 600;
}

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

    gap: 5px;

    padding: 5px 9px;

    border-radius: 100px;

    background: #f8fafc;

    color: var(--srd-muted);

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


/* Privacy notice */

.service-privacy-note {
    margin-top: 22px;

    padding: 14px 16px;

    display: flex;
    align-items: flex-start;

    gap: 11px;

    border: 1px solid #FFD9C2;
    border-radius: 10px;

    background: #FFF8F3;
}

.service-privacy-note > i {
    margin-top: 2px;

    color: var(--srd-green);

    font-size: 15px;
}

.service-privacy-note strong {
    display: block;

    margin-bottom: 3px;

    color: #334155;

    font-size: 11px;
}

.service-privacy-note p {
    margin: 0;

    color: var(--srd-muted);

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


/* =========================================================
   SIDEBAR
========================================================= */

.service-detail-sidebar {
    position: sticky;

    top: 95px;

    display: grid;

    gap: 16px;
}

.service-sidebar-card {
    padding: 22px;

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

    background: #fff;

    box-shadow:
        0 1px 3px
        rgba(15, 23, 42, 0.05);
}

.service-sidebar-icon {
    width: 43px;
    height: 43px;

    margin-bottom: 14px;

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

    border-radius: 10px;

    background: var(--srd-green-light);

    color: var(--srd-green);

    font-size: 17px;
}

.service-sidebar-icon.success {
    background: #ecfdf3;
    color: #16a34a;
}

.service-sidebar-icon.muted {
    background: #f1f5f9;
    color: #64748b;
}

.service-sidebar-card h3 {
    margin: 0 0 7px;

    color: var(--srd-text);

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

.service-sidebar-card > p {
    margin: 0 0 16px;

    color: var(--srd-muted);

    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   SIDEBAR BUTTONS
========================================================= */

.service-sidebar-primary,
.service-sidebar-secondary,
.service-sidebar-disabled {
    width: 100%;
    min-height: 42px;

    padding: 0 14px;

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

    gap: 8px;

    border-radius: 9px;

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

    text-align: center;

    text-decoration: none;
}

.service-sidebar-primary {
    border: 0;

    background: var(--srd-green);

    color: #fff;

    cursor: pointer;
}

.service-sidebar-primary:hover {
    background: var(--srd-green-dark);
}

.service-sidebar-secondary {
    margin-top: 8px;

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

    background: #fff;

    color: #334155;
}

.service-sidebar-secondary:hover {
    border-color: #FFD0B3;

    color: var(--srd-green-dark);
}

.service-sidebar-disabled {
    background: #f1f5f9;

    color: #64748b;
}


/* =========================================================
   CREDIT PRICE
========================================================= */

.service-credit-price {
    margin-bottom: 14px;

    padding: 12px 14px;

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

    gap: 10px;

    border-radius: 9px;

    background: var(--srd-background);
}

.service-credit-price span {
    color: var(--srd-muted);

    font-size: 10px;
}

.service-credit-price strong {
    color: var(--srd-green-dark);

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

.service-sidebar-note {
    display: block;

    margin-top: 10px;

    color: var(--srd-light);

    text-align: center;

    font-size: 9px;
    line-height: 1.5;
}


/* =========================================================
   SUCCESS
========================================================= */

.service-sidebar-success {
    min-height: 42px;

    padding: 0 12px;

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

    gap: 7px;

    border-radius: 9px;

    background: #ecfdf3;

    color: #15803d;

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


/* =========================================================
   SUMMARY
========================================================= */

.service-summary-list {
    display: grid;

    gap: 12px;
}

.service-summary-list > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    padding-bottom: 11px;

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

.service-summary-list > div:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.service-summary-list span {
    color: var(--srd-light);

    font-size: 10px;
}

.service-summary-list strong {
    max-width: 160px;

    color: #334155;

    text-align: right;

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

    word-break: break-word;
}


/* =========================================================
   DISCLAIMER
========================================================= */

.service-detail-disclaimer {
    margin-top: 18px;

    padding: 15px 17px;

    border: 1px solid var(--srd-border);
    border-radius: 10px;

    background: #fff;

    color: var(--srd-light);

    font-size: 9px;
    line-height: 1.65;
}


/* =========================================================
   DISABLED BUTTON
========================================================= */

.service-unlock-button:disabled {
    opacity: 0.65;

    cursor: not-allowed;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .service-detail-container {
        width:
            calc(100% - 28px);
    }

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

    .service-detail-sidebar {
        position: static;
    }

}


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

@media (max-width: 600px) {

    .service-detail-main {
        padding: 20px 0 40px;
    }

    .service-detail-header {
        padding: 22px;
    }

    .service-detail-header-top {
        flex-direction: column;

        gap: 15px;
    }

    .service-detail-section {
        padding: 22px;
    }

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

        gap: 17px;
    }

    .service-section-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .service-enquiry-box {
        padding: 14px;
    }

}


