@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.olwso25aue.bundle.scp.css';

/* /Frontend/Components/BookingCalendar.razor.rz.scp.css */
.booking-calendar[b-02busy47ls] {
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid var(--sfda-line);
    border-radius: 22px;
    background: var(--sfda-soft-bg);
}

.booking-calendar-header[b-02busy47ls] {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.booking-calendar-header strong[b-02busy47ls] {
    color: var(--sfda-blue-dark);
    font-size: 1.15rem;
    text-align: center;
}

.booking-calendar-header button[b-02busy47ls] {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 0;
    border-radius: 50%;
    background: var(--sfda-blue);
}

.booking-calendar-header button:hover[b-02busy47ls] {
    background: var(--sfda-blue-deep);
}

.booking-calendar-weekdays[b-02busy47ls],
.booking-calendar-grid[b-02busy47ls] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
}

.booking-calendar-weekdays[b-02busy47ls] {
    margin-bottom: 0.4rem;
}

.booking-calendar-weekdays span[b-02busy47ls] {
    padding: 0.35rem 0;
    color: var(--sfda-muted);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
}

.booking-calendar-day[b-02busy47ls] {
    aspect-ratio: 1;
    min-width: 0;
    color: var(--sfda-blue-dark);
    border: 1px solid transparent;
    border-radius: 12px;
    background: #fff;
    font-weight: 850;
    transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.booking-calendar-day:not(:disabled):hover[b-02busy47ls] {
    border-color: var(--sfda-blue);
    transform: translateY(-1px);
}

.booking-calendar-day.today[b-02busy47ls] {
    border-color: var(--sfda-yellow);
    box-shadow: inset 0 0 0 2px var(--sfda-yellow);
}

.booking-calendar-day.selected[b-02busy47ls] {
    color: #fff;
    border-color: var(--sfda-blue);
    background: var(--sfda-blue);
    box-shadow: 0 8px 18px rgba(0, 95, 170, 0.2);
}

.booking-calendar-day.unavailable[b-02busy47ls] {
    color: #a72828;
    border-color: rgba(185, 44, 44, 0.16);
    background: #fbe5e5;
    cursor: not-allowed;
    opacity: 1;
}

.booking-calendar-day.outside-month[b-02busy47ls] {
    visibility: hidden;
}

.booking-calendar-legend[b-02busy47ls] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 1rem;
    color: var(--sfda-muted);
    font-size: 0.75rem;
}

.booking-calendar-legend span[b-02busy47ls] {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}

.booking-calendar-legend i[b-02busy47ls] {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid var(--sfda-line);
}

.booking-calendar-legend i.selected[b-02busy47ls] {
    border-color: var(--sfda-blue);
    background: var(--sfda-blue);
}

.booking-calendar-legend i.unavailable[b-02busy47ls] {
    border-color: rgba(185, 44, 44, 0.25);
    background: #fbe5e5;
}

@media (max-width: 480px) {
    .booking-calendar[b-02busy47ls] {
        padding: 0.75rem;
    }

    .booking-calendar-weekdays[b-02busy47ls],
    .booking-calendar-grid[b-02busy47ls] {
        gap: 0.2rem;
    }

    .booking-calendar-day[b-02busy47ls] {
        border-radius: 9px;
        font-size: 0.82rem;
    }
}
/* /Frontend/Layout/AdminLayout.razor.rz.scp.css */


.sticky-nav[b-oijaaqs2gg] {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1000;
}


.OutletContainer[b-oijaaqs2gg] {
    overflow-y: auto;

    margin-top: 0;
    margin-left: 260px; /* Should match the width of the side panel */
    padding-left:10px;
    padding-right:10px;
}


.not-authorized[b-oijaaqs2gg] {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 0.25rem;
    color: #721c24;
    margin: 2rem auto;
    max-width: 40rem;
    padding: 1rem;
    text-align: center;
}

    .not-authorized h2[b-oijaaqs2gg] {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .not-authorized p[b-oijaaqs2gg] {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-oijaaqs2gg] {
        display: none;
    }

    .top-row.auth[b-oijaaqs2gg] {
        justify-content: space-between;
    }

    .top-row a[b-oijaaqs2gg], .top-row .btn-link[b-oijaaqs2gg] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-oijaaqs2gg] {
        flex-direction: row;
    }

    .sidebar[b-oijaaqs2gg] {
        width: 200px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-oijaaqs2gg] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-oijaaqs2gg], article[b-oijaaqs2gg] {
        padding-left: 1rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Frontend/Layout/EmptyLayout.razor.rz.scp.css */
#blazor-error-ui[b-09cno37xxl] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-09cno37xxl] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Frontend/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-wknhtnqa0b] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-wknhtnqa0b] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Frontend/Layout/NavMenu.razor.rz.scp.css */

.navbar-toggler[b-q3di38lykq] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-q3di38lykq] {
    height: 3.5rem;
    background: linear-gradient(to right, #a5a5a5,white);
    border-bottom: 1px solid grey;
}



.navbar-brand[b-q3di38lykq] {
    font-size: 1.1rem;
}


.side-panel[b-q3di38lykq] {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px; 
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid grey;
    z-index: 1000; /* Ensure it's above other content */
    /* Add more styling as needed */
}

.main-content[b-q3di38lykq] {
    margin-left: 250px; /* Should match the width of the side panel */
    /* Rest of your styling */
}


.account-card[b-q3di38lykq]{
    position:fixed;
    bottom:20px
}


@keyframes outline-b-q3di38lykq {
    0% {
        outline-color: #495057;
    }

    50% {
        outline-color: #343a40;
    }

    100% {
        outline-color: #212529;
    }
}




.nav-item[b-q3di38lykq] {
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-q3di38lykq] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-q3di38lykq] {
        padding-bottom: 1rem;
    }

    .nav-item[b-q3di38lykq]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        /*        .nav-item ::deep a.active {
            background-color: #87878750;
            color: white;
        }*/

        .nav-item[b-q3di38lykq]  a:hover {
            background-color: #87878750;
            color: white;
        }


@media (min-width: 641px) {
    .navbar-toggler[b-q3di38lykq] {
        display: none;
    }

    .collapse[b-q3di38lykq] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-q3di38lykq] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Frontend/Pages/Home2.razor.rz.scp.css */
.home2[b-h6p86tihbv] {
    --home2-black: #1d1d1f;
    --home2-blue: #3f6fe4;
    --home2-yellow: #ffd400;
    --home2-paper: #ededed;
    color: var(--home2-black);
    background: var(--home2-paper);
    font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.home2 h2[b-h6p86tihbv],
.home2 h3[b-h6p86tihbv],
.home2 p[b-h6p86tihbv] {
    margin-top: 0;
}

.home2-hero[b-h6p86tihbv] {
    min-height: 760px;
    overflow: hidden;
    background: var(--home2-paper);
}

.home2-hero-inner[b-h6p86tihbv],
.home2-intro-grid[b-h6p86tihbv],
.home2-story-inner[b-h6p86tihbv],
.home2-programs-inner[b-h6p86tihbv],
.home2-team-inner[b-h6p86tihbv],
.home2-contact-inner[b-h6p86tihbv] {
    width: min(100%, 1440px);
    margin: 0 auto;
}

.home2-hero-inner[b-h6p86tihbv] {
    position: relative;
    min-height: 760px;
    padding: 4.5rem clamp(1.25rem, 5vw, 5rem) 3rem;
}

.home2-hero-images[b-h6p86tihbv] {
    position: absolute;
    inset: 6rem auto auto clamp(1.25rem, 5vw, 5rem);
    width: 57%;
    height: 450px;
}

.home2-tire[b-h6p86tihbv],
.home2-driving[b-h6p86tihbv] {
    position: absolute;
    display: block;
    object-fit: cover;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.19);
}

.home2-tire[b-h6p86tihbv] {
    inset: 0 auto auto 0;
    width: 43%;
    height: 100%;
}

.home2-driving[b-h6p86tihbv] {
    right: 0;
    bottom: -4rem;
    width: 58%;
    height: 68%;
}

.home2-hero-title[b-h6p86tihbv] {
    position: absolute;
    z-index: 2;
    top: 2.4rem;
    right: clamp(1rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: "SFDA Display", Impact, sans-serif;
    font-size: clamp(6.5rem, 13vw, 13rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.79;
    text-transform: uppercase;
}

.home2-hero-title strong[b-h6p86tihbv] {
    position: absolute;
    top: 1.67em;
    right: 0;
    color: var(--home2-blue);
    font: inherit;
    white-space: nowrap;
}

.home2-hero-action[b-h6p86tihbv] {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 3.25rem;
    width: min(390px, 45%);
    text-align: center;
    transform: translateX(-16%);
}

.home2-hero-action p[b-h6p86tihbv] {
    font-size: 0.86rem;
    line-height: 1.25;
}

.home2-hero-action a[b-h6p86tihbv],
.home2-program-row a[b-h6p86tihbv],
.home2-team-link[b-h6p86tihbv],
.home2-contact button[b-h6p86tihbv] {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--home2-black);
    background: var(--home2-yellow);
    border: 0;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
}

.home2-hero-action a[b-h6p86tihbv] {
    width: 250px;
}

.home2-intro[b-h6p86tihbv],
.home2-story[b-h6p86tihbv],
.home2-contact[b-h6p86tihbv] {
    color: #fff;
    background: var(--home2-black);
}

.home2-intro-grid[b-h6p86tihbv] {
    display: grid;
    grid-template-columns: 1fr 1fr 0.48fr;
    gap: clamp(2rem, 6vw, 7rem);
    padding: 5rem clamp(1.25rem, 5vw, 5rem) 2rem;
}

.home2-intro h2[b-h6p86tihbv] {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.home2-intro p[b-h6p86tihbv] {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    line-height: 1.8;
}

.home2-locations[b-h6p86tihbv] {
    text-align: right;
}

.home2-locations p[b-h6p86tihbv] {
    margin-bottom: 0.1rem;
    text-transform: lowercase;
}

.home2-story-inner[b-h6p86tihbv] {
    position: relative;
    min-height: 700px;
    padding: 4rem clamp(1.25rem, 5vw, 5rem);
    overflow: hidden;
}

.home2-story img[b-h6p86tihbv] {
    position: absolute;
    top: 7rem;
    left: clamp(1.25rem, 5vw, 5rem);
    width: min(31vw, 390px);
    filter: drop-shadow(0 26px 25px rgba(0, 0, 0, 0.3));
}

.home2-story h2[b-h6p86tihbv],
.home2-team h2[b-h6p86tihbv],
.home2-contact h2[b-h6p86tihbv] {
    margin: 0;
    font-family: "SFDA Display", Impact, sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.78;
    text-transform: uppercase;
}

.home2-story h2[b-h6p86tihbv] {
    position: absolute;
    right: 1rem;
    bottom: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #fff;
    font-size: clamp(8rem, 20vw, 17rem);
}

.home2-story h2 span[b-h6p86tihbv] {
    position: relative;
    z-index: 1;
}

.home2-story h2 span[b-h6p86tihbv]::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 54%;
    right: -2rem;
    width: min(58vw, 800px);
    height: 12px;
    background: var(--home2-blue);
}

.home2-programs[b-h6p86tihbv] {
    color: var(--home2-black);
    background: var(--home2-yellow);
}

.home2-programs-inner[b-h6p86tihbv] {
    padding: 4.5rem clamp(1.25rem, 4vw, 4rem) 5rem;
}

.home2-programs h2[b-h6p86tihbv] {
    margin-bottom: 2.6rem;
    color: #fff;
    font-family: "SFDA Display", Impact, sans-serif;
    font-size: clamp(4rem, 9vw, 7rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.home2-program-row[b-h6p86tihbv] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
    gap: 3rem;
    align-items: center;
    margin: 1.6rem 0;
}

.home2-program-left[b-h6p86tihbv] {
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
}

.home2-program-row h3[b-h6p86tihbv] {
    margin: 0;
    color: var(--home2-black);
    font-family: "SFDA Display", Impact, sans-serif;
    font-size: clamp(3.3rem, 7vw, 6rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.home2-program-left h3[b-h6p86tihbv] {
    text-align: right;
}

.home2-program-row a[b-h6p86tihbv] {
    width: 100%;
    color: #fff;
    background: var(--home2-black);
}

.home2-team[b-h6p86tihbv] {
    background: #fff;
}

.home2-team-inner[b-h6p86tihbv] {
    position: relative;
    min-height: 900px;
    padding: 3rem clamp(1.25rem, 4vw, 4rem);
    overflow: hidden;
}

.home2-team-tabs[b-h6p86tihbv] {
    display: flex;
    width: 230px;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home2-team-tabs span[b-h6p86tihbv] {
    position: relative;
    min-width: 90px;
    text-align: center;
}

.home2-team-tabs .active[b-h6p86tihbv]::before {
    content: "";
    position: absolute;
    top: -0.55rem;
    right: 0;
    left: 0;
    height: 7px;
    background: var(--home2-blue);
}

.home2-team-copy[b-h6p86tihbv] {
    display: grid;
    grid-template-columns: minmax(0, 650px) 190px;
    gap: clamp(2rem, 8vw, 8rem);
    justify-content: space-between;
}

.home2-team-copy > p[b-h6p86tihbv] {
    max-width: 650px;
    font-size: clamp(1.25rem, 2.6vw, 2rem);
    line-height: 1.05;
}

.home2-team dl[b-h6p86tihbv] {
    margin: 0;
    text-align: right;
}

.home2-team dt[b-h6p86tihbv] {
    margin-bottom: 0.35rem;
    font-weight: 900;
}

.home2-team dd[b-h6p86tihbv] {
    margin: 0 0 0.3rem;
    font-size: 0.78rem;
}

.home2-team-link[b-h6p86tihbv] {
    position: absolute;
    top: 18rem;
    right: clamp(1.25rem, 4vw, 4rem);
    width: 330px;
}

.home2-team h2[b-h6p86tihbv] {
    position: absolute;
    right: 0;
    bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: var(--home2-black);
    font-size: clamp(8rem, 19vw, 16rem);
}

.home2-team h2 span[b-h6p86tihbv] {
    position: relative;
    z-index: 1;
}

.home2-team h2 span[b-h6p86tihbv]::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 51%;
    right: -1rem;
    width: min(68vw, 850px);
    height: 11px;
    background: var(--home2-blue);
}

.home2-contact-inner[b-h6p86tihbv] {
    padding: 5rem clamp(1.25rem, 4vw, 4rem) 6rem;
}

.home2-contact h2[b-h6p86tihbv] {
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
    color: #fff;
    font-size: clamp(6rem, 15vw, 12rem);
}

.home2-contact form[b-h6p86tihbv] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1rem;
    max-width: 1080px;
}

.home2-contact label[b-h6p86tihbv] {
    display: grid;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
}

.home2-contact input[b-h6p86tihbv],
.home2-contact textarea[b-h6p86tihbv] {
    width: 100%;
    padding: 0.6rem 0;
    color: #fff;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    outline: 0;
}

.home2-contact input:focus[b-h6p86tihbv],
.home2-contact textarea:focus[b-h6p86tihbv] {
    border-color: var(--home2-yellow);
}

.home2-message[b-h6p86tihbv] {
    grid-column: 1 / -1;
}

.home2-contact textarea[b-h6p86tihbv] {
    resize: vertical;
}

.home2-contact button[b-h6p86tihbv] {
    width: 190px;
}

@media (max-width: 991px) {
    .home2-hero[b-h6p86tihbv],
    .home2-hero-inner[b-h6p86tihbv] {
        min-height: 770px;
    }

    .home2-hero-images[b-h6p86tihbv] {
        top: 10rem;
        width: 76%;
        height: 390px;
    }

    .home2-hero-title[b-h6p86tihbv] {
        font-size: clamp(5.3rem, 16vw, 9rem);
    }

    .home2-hero-action[b-h6p86tihbv] {
        left: auto;
        right: 8%;
        width: 310px;
        transform: none;
    }

    .home2-intro-grid[b-h6p86tihbv] {
        grid-template-columns: 1fr 1fr;
    }

    .home2-locations[b-h6p86tihbv] {
        grid-column: 1 / -1;
        text-align: left;
    }

    .home2-locations p[b-h6p86tihbv] {
        display: inline;
        margin-right: 1rem;
    }
}

@media (max-width: 767px) {
    .home2-hero[b-h6p86tihbv],
    .home2-hero-inner[b-h6p86tihbv] {
        min-height: 820px;
    }

    .home2-hero-inner[b-h6p86tihbv] {
        padding-top: 2rem;
    }

    .home2-hero-images[b-h6p86tihbv] {
        top: 8.5rem;
        left: 1.25rem;
        width: calc(100% - 2.5rem);
        height: 350px;
    }

    .home2-tire[b-h6p86tihbv] {
        width: 42%;
        height: 88%;
    }

    .home2-driving[b-h6p86tihbv] {
        right: 0;
        bottom: -2.5rem;
        width: 66%;
        height: 61%;
    }

    .home2-hero-title[b-h6p86tihbv] {
        top: 1.4rem;
        right: 0.4rem;
        font-size: clamp(4.8rem, 25vw, 7rem);
    }

    .home2-hero-title strong[b-h6p86tihbv] {
        top: 2.22em;
        right: -0.02em;
        font-size: 0.72em;
    }

    .home2-hero-action[b-h6p86tihbv] {
        right: 50%;
        bottom: 2.2rem;
        width: min(300px, calc(100% - 2.5rem));
        transform: translateX(50%);
    }

    .home2-hero-action p[b-h6p86tihbv] {
        font-size: 0.72rem;
    }

    .home2-intro-grid[b-h6p86tihbv] {
        grid-template-columns: 1fr 1fr;
        gap: 2.2rem 1.25rem;
        padding-top: 3.5rem;
    }

    .home2-intro h2[b-h6p86tihbv] {
        font-size: 0.9rem;
    }

    .home2-intro p[b-h6p86tihbv] {
        font-size: 0.65rem;
        line-height: 1.65;
    }

    .home2-locations[b-h6p86tihbv] {
        grid-column: auto;
        text-align: right;
    }

    .home2-locations p[b-h6p86tihbv] {
        display: block;
        margin-right: 0;
    }

    .home2-story-inner[b-h6p86tihbv] {
        min-height: 580px;
    }

    .home2-story img[b-h6p86tihbv] {
        top: 4rem;
        width: min(44vw, 220px);
    }

    .home2-story h2[b-h6p86tihbv] {
        bottom: 3rem;
        font-size: clamp(6.5rem, 34vw, 10rem);
    }

    .home2-story h2 span[b-h6p86tihbv]::after,
    .home2-team h2 span[b-h6p86tihbv]::before {
        height: 7px;
    }

    .home2-programs-inner[b-h6p86tihbv] {
        padding: 3rem 0.2rem 3.5rem;
    }

    .home2-programs h2[b-h6p86tihbv] {
        margin-bottom: 2rem;
        font-size: clamp(3.6rem, 17vw, 5.5rem);
    }

    .home2-program-row[b-h6p86tihbv],
    .home2-program-left[b-h6p86tihbv] {
        grid-template-columns: minmax(0, 1fr) minmax(140px, 0.55fr);
        gap: 1rem;
        margin: 1.8rem 0;
    }

    .home2-program-left[b-h6p86tihbv] {
        grid-template-columns: minmax(140px, 0.55fr) minmax(0, 1fr);
    }

    .home2-program-row h3[b-h6p86tihbv] {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .home2-program-row a[b-h6p86tihbv] {
        min-height: 38px;
        font-size: 0.62rem;
    }

    .home2-team-inner[b-h6p86tihbv] {
        min-height: 720px;
        padding: 2.5rem 0.25rem;
    }

    .home2-team-copy[b-h6p86tihbv] {
        grid-template-columns: minmax(0, 1fr) 105px;
        gap: 1rem;
    }

    .home2-team-copy > p[b-h6p86tihbv] {
        font-size: 1.12rem;
    }

    .home2-team dl[b-h6p86tihbv] {
        font-size: 0.75rem;
    }

    .home2-team dd[b-h6p86tihbv] {
        font-size: 0.56rem;
    }

    .home2-team-link[b-h6p86tihbv] {
        top: 15rem;
        right: 0.5rem;
        width: 155px;
        min-height: 38px;
        font-size: 0.62rem;
    }

    .home2-team h2[b-h6p86tihbv] {
        bottom: 3rem;
        font-size: clamp(6rem, 31vw, 9rem);
    }

    .home2-contact-inner[b-h6p86tihbv] {
        padding: 3rem 0.4rem 4rem;
    }

    .home2-contact h2[b-h6p86tihbv] {
        margin-bottom: 3rem;
        font-size: clamp(5rem, 25vw, 7rem);
    }

    .home2-contact form[b-h6p86tihbv] {
        gap: 2.5rem 0.75rem;
    }

    .home2-contact button[b-h6p86tihbv] {
        width: 120px;
        min-height: 38px;
        font-size: 0.62rem;
    }
}
/* /Frontend/Pages/Roles/AddUpdateRole.razor.rz.scp.css */
/* /Frontend/Pages/Roles/Roles.razor.rz.scp.css */
/* /Frontend/Pages/ServiceApplication.razor.rz.scp.css */
.service-application-hero[b-oufs01j65w] {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(7rem, 11vw, 10rem);
    color: #fff;
    background:
        radial-gradient(circle at 88% 20%, rgba(255, 225, 0, 0.3), transparent 25rem),
        linear-gradient(135deg, var(--sfda-blue-dark), var(--sfda-blue));
}

.service-application-hero[b-oufs01j65w]::after {
    content: "";
    position: absolute;
    right: -9rem;
    bottom: -13rem;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    background: var(--sfda-yellow);
    opacity: 0.18;
}

.service-application-hero .container[b-oufs01j65w] {
    position: relative;
    z-index: 1;
}

.service-application-hero h1[b-oufs01j65w] {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.95;
}

.service-application-hero p:not(.sfda-eyebrow)[b-oufs01j65w] {
    max-width: 720px;
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-application-page[b-oufs01j65w] {
    padding: 0 0 clamp(4rem, 8vw, 7rem);
    background: var(--sfda-soft-bg);
}

.application-card[b-oufs01j65w] {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: clamp(1.25rem, 4vw, 3.5rem);
    border: 1px solid var(--sfda-line);
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--sfda-shadow);
    transform: translateY(-5rem);
}

.service-selectors[b-oufs01j65w] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid var(--sfda-line);
}

.service-selectors label[b-oufs01j65w],
.client-fields label[b-oufs01j65w] {
    display: grid;
    gap: 0.5rem;
}

.service-selectors label > span[b-oufs01j65w],
.client-fields label > span[b-oufs01j65w],
.payment-fieldset legend[b-oufs01j65w] {
    color: var(--sfda-blue-dark);
    font-size: 0.77rem;
    font-weight: 950;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.service-selectors select[b-oufs01j65w],
.client-fields input[b-oufs01j65w] {
    width: 100%;
    min-height: 52px;
    padding: 0.75rem 1rem;
    color: var(--sfda-ink);
    border: 1px solid var(--sfda-line);
    border-radius: 14px;
    background: var(--sfda-soft-bg);
    font: inherit;
}

.service-selectors select[b-oufs01j65w] {
    padding-right: 2.75rem;
    font-weight: 800;
}

.service-selectors select:focus[b-oufs01j65w],
.client-fields input:focus[b-oufs01j65w] {
    outline: 3px solid rgba(255, 225, 0, 0.45);
    border-color: var(--sfda-blue);
}

.service-detail-header[b-oufs01j65w] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: end;
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
}

.service-detail-kicker[b-oufs01j65w] {
    margin: 0 0 0.7rem;
    color: var(--sfda-blue);
    font-weight: 900;
}

.service-detail-header h2[b-oufs01j65w] {
    margin: 0;
    color: var(--sfda-ink);
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    line-height: 0.98;
}

.service-summary[b-oufs01j65w] {
    display: grid;
    grid-template-columns: auto auto auto;
    border: 1px solid var(--sfda-line);
    border-radius: 15px;
    overflow: hidden;
}

.service-summary > *[b-oufs01j65w] {
    display: flex;
    min-height: 54px;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--sfda-blue-dark);
    border-right: 1px solid var(--sfda-line);
    white-space: nowrap;
}

.service-summary > :first-child[b-oufs01j65w] {
    background: rgba(255, 225, 0, 0.24);
    font-weight: 900;
}

.service-summary > :last-child[b-oufs01j65w] {
    border-right: 0;
}

.service-summary strong[b-oufs01j65w] {
    color: var(--sfda-blue);
    font-size: 1.15rem;
}

.service-overview[b-oufs01j65w] {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: clamp(2rem, 5vw, 4rem);
    padding-bottom: clamp(2rem, 5vw, 4rem);
}

.service-overview h3[b-oufs01j65w],
.time-picker h3[b-oufs01j65w],
.client-fields > h3[b-oufs01j65w],
.policy-section h3[b-oufs01j65w] {
    margin: 0 0 1rem;
    color: var(--sfda-ink);
    font-size: 1.35rem;
}

.service-overview p[b-oufs01j65w],
.policy-section p[b-oufs01j65w] {
    margin: 0 0 1rem;
    color: var(--sfda-muted);
    line-height: 1.75;
}

.service-overview aside[b-oufs01j65w] {
    align-self: start;
    padding: 1.5rem;
    border-radius: 22px;
    background: var(--sfda-soft-bg);
}

.service-location[b-oufs01j65w] {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sfda-line);
}

.service-location address[b-oufs01j65w] {
    display: grid;
    gap: 0.3rem;
    color: var(--sfda-muted);
    font-style: normal;
    line-height: 1.5;
}

.service-location address strong[b-oufs01j65w] {
    color: var(--sfda-blue-dark);
}

.service-location address a[b-oufs01j65w] {
    width: fit-content;
    margin-top: 0.25rem;
    color: var(--sfda-blue);
    font-weight: 850;
    text-decoration: none;
}

.selection-prompt[b-oufs01j65w] {
    margin: 0 !important;
    padding-left: 0.8rem;
    border-left: 5px solid var(--sfda-yellow);
}

.application-section[b-oufs01j65w] {
    padding: clamp(2.5rem, 6vw, 5rem) 0;
    border-top: 1px solid var(--sfda-line);
}

.application-section-heading[b-oufs01j65w] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    max-width: 800px;
    margin-bottom: 2rem;
}

.section-number[b-oufs01j65w] {
    display: inline-flex;
    min-width: 48px;
    height: 32px;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: var(--sfda-blue-dark);
    border-radius: 999px;
    background: var(--sfda-yellow);
    font-size: 0.75rem;
    font-weight: 950;
}

.application-section-heading h2[b-oufs01j65w] {
    margin: 0 0 0.45rem;
    color: var(--sfda-ink);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.application-section-heading p:not(.section-number)[b-oufs01j65w] {
    margin: 0;
    color: var(--sfda-muted);
    line-height: 1.65;
}

.schedule-grid[b-oufs01j65w] {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: stretch;
}

.time-picker[b-oufs01j65w] {
    padding: 1.5rem;
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 225, 0, 0.22), transparent 15rem),
        var(--sfda-blue-dark);
}

.time-picker h3[b-oufs01j65w] {
    color: #fff;
}

.time-placeholder[b-oufs01j65w] {
    display: grid;
    min-height: 290px;
    place-content: center;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.time-placeholder i[b-oufs01j65w] {
    color: var(--sfda-yellow);
    font-size: 2.5rem;
}

.time-placeholder p[b-oufs01j65w] {
    max-width: 230px;
    margin: 0.8rem auto 0;
}

.selected-date[b-oufs01j65w] {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.time-options[b-oufs01j65w] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.time-options button[b-oufs01j65w] {
    min-height: 44px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 850;
}

.time-options button:hover[b-oufs01j65w],
.time-options button.selected[b-oufs01j65w] {
    color: var(--sfda-blue-dark);
    border-color: var(--sfda-yellow);
    background: var(--sfda-yellow);
}

.booking-layout[b-oufs01j65w] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.client-fields[b-oufs01j65w] {
    display: grid;
    gap: 1.15rem;
}

.form-grid[b-oufs01j65w] {
    display: grid;
    gap: 1rem;
}

.two-columns[b-oufs01j65w] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.address-grid[b-oufs01j65w] {
    grid-template-columns: minmax(0, 1.3fr) minmax(120px, 0.6fr) minmax(110px, 0.5fr);
}

.client-fields label b[b-oufs01j65w],
.payment-fieldset legend b[b-oufs01j65w] {
    color: #b92525;
}

.validation-message[b-oufs01j65w] {
    color: #b92525;
    font-size: 0.78rem;
    font-weight: 750;
}

.payment-fieldset[b-oufs01j65w] {
    margin: 1rem 0 0;
    padding: 0;
    border: 0;
}

.payment-fieldset legend[b-oufs01j65w] {
    margin-bottom: 0.75rem;
}

.payment-options[b-oufs01j65w] {
    display: grid;
    gap: 0.75rem;
}

.payment-option[b-oufs01j65w] {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--sfda-line);
    border-radius: 16px;
    background: var(--sfda-soft-bg);
    cursor: pointer;
}

.payment-option:has(input:checked)[b-oufs01j65w] {
    border-color: var(--sfda-blue);
    background: rgba(0, 95, 170, 0.08);
    box-shadow: inset 0 0 0 1px var(--sfda-blue);
}

.payment-option input[b-oufs01j65w] {
    min-height: auto;
    accent-color: var(--sfda-blue);
}

.payment-option > span[b-oufs01j65w] {
    display: grid;
    gap: 0.15rem;
    color: var(--sfda-blue-dark);
}

.payment-option small[b-oufs01j65w] {
    color: var(--sfda-muted);
}

.payment-option > b[b-oufs01j65w] {
    color: var(--sfda-blue);
}

.booking-summary-card[b-oufs01j65w] {
    position: sticky;
    top: 118px;
    padding: 1.5rem;
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 225, 0, 0.24), transparent 13rem),
        var(--sfda-blue-dark);
    box-shadow: 0 18px 42px rgba(4, 42, 85, 0.22);
}

.summary-eyebrow[b-oufs01j65w] {
    margin: 0 0 0.55rem;
    color: var(--sfda-yellow);
    font-size: 0.7rem;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.booking-summary-card h3[b-oufs01j65w] {
    margin: 0 0 1.5rem;
    color: #fff;
    font-size: 1.45rem;
}

.booking-summary-card dl[b-oufs01j65w] {
    margin: 0;
}

.booking-summary-card dl > div[b-oufs01j65w] {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-summary-card dt[b-oufs01j65w] {
    color: rgba(255, 255, 255, 0.62);
}

.booking-summary-card dd[b-oufs01j65w] {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.booking-total[b-oufs01j65w] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding: 1.1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    font-weight: 900;
}

.booking-total strong[b-oufs01j65w] {
    color: var(--sfda-yellow);
    font-size: 1.5rem;
}

.booking-terms[b-oufs01j65w] {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    line-height: 1.5;
}

.booking-summary-card .sfda-btn[b-oufs01j65w] {
    width: 100%;
    color: var(--sfda-blue-dark);
    background: var(--sfda-yellow);
}

.submission-message[b-oufs01j65w] {
    margin-top: 1rem;
    padding: 0.85rem;
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.45;
}

.submission-message.success[b-oufs01j65w] {
    color: #d9ffe5;
    background: rgba(38, 176, 80, 0.2);
}

.submission-message.error[b-oufs01j65w] {
    color: #ffe0e0;
    background: rgba(201, 49, 49, 0.22);
}

.policy-section[b-oufs01j65w] {
    padding-bottom: 0;
}

.policy-section p[b-oufs01j65w] {
    max-width: 800px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .service-detail-header[b-oufs01j65w],
    .service-overview[b-oufs01j65w],
    .schedule-grid[b-oufs01j65w],
    .booking-layout[b-oufs01j65w] {
        grid-template-columns: 1fr;
    }

    .service-summary[b-oufs01j65w] {
        width: fit-content;
    }

    .booking-summary-card[b-oufs01j65w] {
        position: static;
    }
}

@media (max-width: 767px) {
    .service-application-hero[b-oufs01j65w] {
        padding-bottom: 7rem;
    }

    .application-card[b-oufs01j65w] {
        margin-right: -0.25rem;
        margin-left: -0.25rem;
        padding: 1.25rem;
        border-radius: 24px;
        transform: translateY(-3.5rem);
    }

    .service-selectors[b-oufs01j65w],
    .two-columns[b-oufs01j65w],
    .address-grid[b-oufs01j65w] {
        grid-template-columns: 1fr;
    }

    .service-detail-header[b-oufs01j65w] {
        gap: 1.5rem;
    }

    .service-summary[b-oufs01j65w] {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .service-summary > *[b-oufs01j65w] {
        min-height: 46px;
        border-right: 0;
        border-bottom: 1px solid var(--sfda-line);
        white-space: normal;
    }

    .service-summary > :last-child[b-oufs01j65w] {
        border-bottom: 0;
    }

    .application-section-heading[b-oufs01j65w] {
        grid-template-columns: 1fr;
    }

    .time-options[b-oufs01j65w] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .payment-option[b-oufs01j65w] {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .payment-option > b[b-oufs01j65w] {
        grid-column: 2;
    }
}

@media (max-width: 420px) {
    .time-options[b-oufs01j65w] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
