@charset "UTF-8";

/*--------------------------------------------------------------
# Root Variables
--------------------------------------------------------------*/

:root {
    --default-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --heading-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --background-color: #f4f7fb;
    --surface-color: #ffffff;
    --surface-muted: #f8fafc;
    --default-color: #475467;
    --heading-color: #101828;
    --accent-color: #56b6e9;
    --accent-hover: #2d9cdb;
    --accent-soft: #eef8fd;
    --border-color: #e4e7ec;
    --border-strong: #d0d5dd;
    --success-color: #12b76a;
    --warning-color: #f79009;
    --danger-color: #f04438;
    --info-color: #56b6e9;
    --shadow-sm: 0 4px 14px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 12px 30px rgba(16, 24, 40, 0.08);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --contrast-color: #ffffff;
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    font-size: 15.5px;
    line-height: 1.65;
    font-weight: 400;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 70px;
    }
}


/*--------------------------------------------------------------
# Web Hero Header
--------------------------------------------------------------*/

.web-panel-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    padding: 140px 20px 100px;
    text-align: center;
    color: #ffffff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.web-panel-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.64));
    z-index: 1;
}

.web-panel-hero::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.24), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.web-panel-hero .container {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}


/*--------------------------------------------------------------
# Hero Badge
--------------------------------------------------------------*/

.web-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(80, 197, 255, 0.14);
    border: 1px solid rgba(80, 197, 255, 0.28);
    color: #e8faff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.web-hero-badge i {
    color: #50c5ff;
    font-size: 0.92rem;
    line-height: 1;
}


/*--------------------------------------------------------------
# Hero Title & Text
--------------------------------------------------------------*/

.web-panel-hero h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.web-panel-hero p {
    margin: 0 auto;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.web-panel-hero .breadcrumbs {
    margin-top: 28px;
}

.web-panel-hero .breadcrumbs ol {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.web-panel-hero .breadcrumbs li {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.5;
}

.web-panel-hero .breadcrumbs li a {
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.web-panel-hero .breadcrumbs li a:hover {
    color: #50c5ff;
}

.web-panel-hero .breadcrumbs li+li::before {
    content: "›";
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 600;
}

.web-panel-hero .breadcrumbs li:last-child {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.web-panel-hero .breadcrumbs li:last-child::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #50c5ff, transparent);
}


/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/

.section-title {
    position: relative;
    text-align: left;
    margin: 5px 0 32px;
}

.section-title h2 {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 32%);
}

.section-title h2::after {
    content: "";
    flex: 0 0 120px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.section-title p {
    margin: 0;
    width: 100%;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: var(--heading-color);
    font-family: var(--heading-font);
}


/*--------------------------------------------------------------------------------------------------------------------------------------------------
# Start Preloader
----------------------------------------------------------------------------------------------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(80, 197, 255, 0.08), transparent 28%), var(--background-color);
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.16), transparent 70%);
    animation: preloader-pulse 1.8s ease-in-out infinite;
}

#preloader::after {
    content: "";
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 4px solid rgba(80, 197, 255, 0.16);
    border-top-color: var(--accent-color);
    border-right-color: var(--accent-color);
    animation: preloader-spin 0.9s linear infinite;
    box-shadow: 0 0 20px rgba(80, 197, 255, 0.12);
}

@keyframes preloader-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes preloader-pulse {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


/*--------------------------------------------------------------
# AOS Mobile Fix
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Large Desktop
--------------------------------------------------------------*/

@media (min-width: 1200px) {
    .web-panel-hero {
        min-height: 490px;
        padding: 150px 20px 105px;
    }
    .web-panel-hero h1 {
        font-size: 3.2rem;
    }
    .web-panel-hero p {
        font-size: 1.08rem;
    }
    .section-title {
        margin: 5px 0 36px;
    }
    .section-title p {
        font-size: 2.2rem;
    }
}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 991.98px) {
    .web-panel-hero {
        min-height: 410px;
        padding: 125px 20px 82px;
    }
    .web-panel-hero .container {
        max-width: 760px;
    }
    .web-panel-hero h1 {
        font-size: 2.45rem;
    }
    .web-panel-hero p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.76;
    }
    .web-hero-badge {
        min-height: 40px;
        font-size: 0.76rem;
        padding: 7px 15px;
    }
    .web-panel-hero .breadcrumbs {
        margin-top: 24px;
    }
    .web-panel-hero .breadcrumbs li {
        font-size: 0.86rem;
    }
    .section-title {
        margin: 5px 0 28px;
    }
    .section-title h2 {
        font-size: 0.78rem;
    }
    .section-title h2::after {
        flex-basis: 90px;
    }
    .section-title p {
        font-size: 1.75rem;
        line-height: 1.28;
    }
    #preloader::before {
        width: 96px;
        height: 96px;
    }
    #preloader::after {
        width: 54px;
        height: 54px;
    }
}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 767.98px) {
    .web-panel-hero {
        min-height: auto;
        padding: 110px 16px 68px;
    }
    .web-panel-hero::after {
        top: -90px;
        right: -70px;
        width: 220px;
        height: 220px;
    }
    .web-panel-hero .container {
        max-width: 100%;
    }
    .web-hero-badge {
        min-height: 38px;
        padding: 6px 14px;
        margin-bottom: 16px;
        font-size: 0.72rem;
        letter-spacing: 0.05em;
    }
    .web-hero-badge i {
        font-size: 0.86rem;
    }
    .web-panel-hero h1 {
        margin-bottom: 14px;
        font-size: 2rem;
        line-height: 1.12;
    }
    .web-panel-hero p {
        font-size: 0.95rem;
        line-height: 1.72;
    }
    .web-panel-hero .breadcrumbs {
        margin-top: 20px;
    }
    .web-panel-hero .breadcrumbs ol {
        gap: 4px;
    }
    .web-panel-hero .breadcrumbs li {
        font-size: 0.82rem;
    }
    .web-panel-hero .breadcrumbs li+li::before {
        margin: 0 6px;
    }
    .web-panel-hero .breadcrumbs li:last-child::after {
        bottom: -3px;
    }
    .section-title {
        margin: 5px 0 24px;
    }
    .section-title h2 {
        gap: 8px;
        font-size: 0.72rem;
        flex-wrap: wrap;
    }
    .section-title h2::after {
        flex: 0 0 70px;
    }
    .section-title p {
        font-size: 1.4rem;
        line-height: 1.32;
    }
    #preloader::before {
        width: 86px;
        height: 86px;
    }
    #preloader::after {
        width: 48px;
        height: 48px;
        border-width: 3px;
    }
}


/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 575.98px) {
    .web-panel-hero {
        padding: 100px 14px 58px;
    }
    .web-panel-hero h1 {
        font-size: 1.72rem;
    }
    .web-panel-hero p {
        font-size: 0.91rem;
        line-height: 1.68;
    }
    .web-hero-badge {
        min-height: 36px;
        padding: 6px 12px;
        font-size: 0.68rem;
    }
    .web-panel-hero .breadcrumbs li {
        font-size: 0.78rem;
    }
    .section-title {
        margin: 5px 0 20px;
    }
    .section-title h2 {
        font-size: 0.68rem;
    }
    .section-title h2::after {
        flex-basis: 55px;
    }
    .section-title p {
        font-size: 1.2rem;
    }
}


/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transform: translateY(16px);
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.scroll-top i {
    font-size: 22px;
    line-height: 0;
    color: var(--contrast-color);
}

.scroll-top:hover {
    background-color: var(--accent-hover);
    color: var(--contrast-color);
    transform: translateY(0) scale(1.05);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.22);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.button-action-btn-delete {
    background: rgba(220, 53, 69, 0.08);
    color: #b42318;
    border-color: rgba(220, 53, 69, 0.14);
}

.button-action-btn-delete:hover {
    background: rgba(220, 53, 69, 0.14);
    color: #912018;
}

.button-action-btn-delete,
.schedule-action-btn-edit {
    cursor: pointer;
}





/*--------------------------------------------------------------
# Schedule Board
--------------------------------------------------------------*/
.schedule-board-card {
    overflow: hidden;
}

.schedule-board-head {
    align-items: center;
}

.schedule-board-count {
    min-width: 88px;
    padding: 14px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(80, 197, 255, 0.14), rgba(80, 197, 255, 0.06));
    border: 1px solid rgba(80, 197, 255, 0.2);
    text-align: center;
    flex-shrink: 0;
}

.schedule-board-count span {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--heading-color);
}

.schedule-board-count small {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--default-color);
}

.schedule-board-body {
    display: grid;
    gap: 16px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.schedule-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(80, 197, 255, 0.28);
}

.schedule-row-time {
    display: flex;
    align-items: flex-start;
}

.schedule-time-badge {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.schedule-time-badge i {
    color: #50c5ff;
    font-size: 1rem;
}

.schedule-row-main {
    min-width: 0;
}

.schedule-row-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}

.schedule-row-title {
    margin: 0 0 10px;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--heading-color);
}

.schedule-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.schedule-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(80, 197, 255, 0.12);
    border: 1px solid rgba(80, 197, 255, 0.18);
    color: var(--heading-color);
    font-size: 0.92rem;
    font-weight: 600;
}

.schedule-meta-pill i {
    color: #27b1f2;
}

.schedule-meta-pill-soft {
    background: #f8fbfd;
    border-color: var(--border-color);
}

.schedule-row-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.schedule-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.schedule-action-btn-edit {
    background: rgba(80, 197, 255, 0.12);
    color: var(--heading-color);
    border-color: rgba(80, 197, 255, 0.18);
}

.schedule-action-btn-edit:hover {
    background: rgba(80, 197, 255, 0.18);
    color: var(--heading-color);
}

.schedule-row-actions form {
    margin: 0;
}

.schedule-empty-state {
    padding: 34px 22px;
    border: 1px dashed rgba(80, 197, 255, 0.28);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(80, 197, 255, 0.05), rgba(80, 197, 255, 0.02));
    text-align: center;
}

.schedule-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    color: #27b1f2;
    font-size: 1.4rem;
}

.schedule-empty-state h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--heading-color);
}

.schedule-empty-state p {
    color: var(--default-color);
}

@media (max-width: 991.98px) {
    .schedule-row {
        grid-template-columns: 1fr;
    }

    .schedule-row-time {
        align-items: stretch;
    }
}

@media (max-width: 767.98px) {
    .schedule-board-head {
        gap: 14px;
    }

    .schedule-board-count {
        width: 100%;
    }

    .schedule-row {
        padding: 16px;
        border-radius: 18px;
    }

    .schedule-row-actions {
        width: 100%;
    }

    .schedule-action-btn {
        flex: 1 1 auto;
    }
}