/* ====== DEFINISI VARIABEL GLOBAL ====== */
:root {
    /* Color Palette */
    --gl-primary: #2DAAE1;
    --gl-blue: #2DAAE1;
    --gl-deep-blue: #2D7FC1;
    --gl-secondary: #FFCB05;
    --gl-background: #F8F9FA;
    --gl-white: #ffff;
    --gl-tosca: #94CFD2;
    --gl-white-gray: #F6F6F6;
    --gl-bg-gradient-linear: linear-gradient(to right, #2daae1, #2D7FC0);
    --gl-text-main: #29303B;
    --gl-text-muted: #808285;
    --gl-border: #DBE1E9;
    --gl-green: #22943b;

    /* Typography */
    --font-primary: 'Roboto';

    --fs-h1: 32px;
    --fs-h2: 24px;
    --fs-h3: 26px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --fs-normal: 16px;
    --fs-small: 14px;
    --fs-smaller: 10px;

    --fs-card-head-big: 18px;
    --fs-card-head-small: 16px;
    --fs-card-sub: 14px;

    --line-heigt-sub-title: 20px;

    /* Spacing & Border Radius */
    --section-padding-y: 42px;
    --border-radius-base: 8px;
    --border-radius-mini: 5px;
    --border-radius-lg: 16px;
    --navbar-height: 80px;
}

/* Desktop Override Variables */
@media (min-width: 992px) {
    :root {
        --fs-h1: 40px;
        --fs-h2: 32px;
        /* --fs-h3: 32px;
        --fs-h4: 29px;
        --fs-h5: 24px;
        --fs-normal: 24px;
        --fs-small: 20px;
        --fs-smaller: 16px;*/
        --section-padding-y: 70px;
    }
}

/* ====== SET GLOBAL ====== */
body {
    font-family: var(--font-primary) !important;
    background-color: var(--gl-background);
    color: var(--gl-text-main);
    margin: 0;
    padding: 0;
}

.bg-blue {
    background-color: #2069A4 !important;
}

.text-primary-gl {
    color: var(--gl-primary);
}

.text-main-gl {
    font-size: var(--fs-normal) !important;
    color: var(--gl-text-main) !important;
}

.text-muted-gl {
    font-size: var(--fs-card-head-small) !important;
    color: var(--gl-text-muted) !important;
}

.rotate-90deg {
    transform: rotate(90deg);
}

.required input:required+label::after {
    content: ' *';
    color: #e32;
}

.border-x-custom-yellow {
    border-left: 6px solid #FFCB05 !important;
    border-right: 6px solid #FFCB05 !important;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

/* ====== JUMBOTRON SECTION ====== */
#wrapper {
    margin-top: 0;
}

.wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.hero-section {
    background: var(--gl-bg-gradient-linear);
    padding-top: 84px;
    padding-bottom: calc(var(--section-padding-y) - 15px);
    /* min-height: 100dvh; */
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gl-white);
    font-family: var(--font-primary) !important;
    margin-bottom: 16px;
    text-align: center;
}

.hero-title {
    font-size: var(--fs-h1);
    color: var(--gl-white);
    font-family: var(--font-primary) !important;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.hero-desc {
    font-size: var(--fs-normal);
    color: var(--gl-white);
    font-family: var(--font-primary) !important;
    line-height: 1.5;
    font-weight: 400;
}

.btn-gl-primary {
    background-color: var(--gl-secondary);
    color: var(--gl-text-main);
    font-size: var(--fs-normal);
    font-family: var(--font-primary) !important;
    border-radius: var(--border-radius-mini);
    border: none;
    transition: all 0.3s ease;
    font-weight: 600 !important;
}

.btn-gl-primary:hover {
    background-color: #E6B705;
    color: var(--gl-text-main);
}

.btn-gl-secondary {
    background-color: var(--gl-white);
    color: var(--gl-primary);
    font-size: var(--fs-normal);
    font-family: var(--font-primary) !important;
    border-radius: var(--border-radius-mini);
    border: none;
    transition: all 0.3s ease;
    font-weight: 600 !important;
}

.btn-gl-secondary:hover {
    background-color: var(--gl-white-gray);
    color: var(--gl-deep-blue);
}

@media (min-width: 992px) {
    .hero-section {
        min-height: auto;
        padding-top: calc(var(--section-padding-y) + 28px);
        padding-bottom: 28px;
    }

    .hero-title {
        text-align: left;
    }

    .hero-subtitle {
        font-size: 24px;
        text-align: left;
        margin-bottom: 8px;
    }

    .w-lg-auto {
        width: auto !important;
    }
}

/* ===== JUMBOTRON SECTION STYLES END ===== */

/* ===== MICRO PROOF STYLES START ===== */
.micro-proof {
    background-color: #2069A4;
    color: #ffffff;
}

.proof-wrapper {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    gap: 40px;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    line-height: 1.2;
}

.proof-label {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    /* opacity: 0.9; */
}

.proof-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.micro-proof .counter {
    color: #ffffff;
}

.proof-unit {
    font-size: 24px;
    font-weight: 700;
}

/* ===== DESKTOP BREAKPOINT ===== */
@media (min-width: 992px) {
    .proof-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        gap: 0;
    }

    .proof-item {
        align-items: center;
        text-align: center;
    }

    /* .proof-number {
        font-size: 40px;
    } */

    /* .proof-unit {
        font-size: 28px;
    } */
}

/* ===== MICRO PROOF STYLES END ===== */

/* ===== TANTANGAN SECTION STYLES START ===== */
.section-title {
    font-size: var(--fs-h2);
    font-weight: 700 !important;
    color: var(--gl-text-main);
}

.section-subtitle {
    font-size: var(--fs-small);
    color: var(--gl-text-muted);
    line-height: 1.45;
}

.card-tantangan {
    border: 1px solid #EAEAEA;
    border-radius: var(--border-radius-base);
    padding: 24px;
    background: var(--gl-white);
    box-shadow: none;
    transition: transform 0.3s ease;
}

.card-tantangan-number {
    font-size: var(--fs-h5);
    font-weight: 700;
    color: var(--gl-primary);
    line-height: 34px;
}

.card-tantangan-icon {
    width: 38px;
    height: 30px;
    max-width: 48px;
    object-fit: contain;
}

.card-tantangan-title {
    font-size: var(--fs-card-head-small);
    font-weight: 700;
    color: var(--gl-text-main);
    line-height: 24px;

}

.card-tantangan-desc {
    font-size: var(--fs-card-sub);
    color: var(--gl-text-muted);
    line-height: 20px;
    margin-bottom: 0;
}

/* Equal Height */
.splide__slide {
    display: flex;
    height: auto;
}

.splide__slide>.card {
    width: 100%;
}

/* Custom Controls */
.custom-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
    margin-top: 24px;
}

.custom-carousel-controls .splide__arrow {
    position: static;
    transform: none;
    background: #E0E0E0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-carousel-controls .splide__arrow--next,  .custom-carousel-controls .splide__arrow--prev {
    background: var(--gl-secondary);
}

.custom-carousel-controls .splide__arrow--next:disabled,  .custom-carousel-controls .splide__arrow--prev:disabled {
    background: #E0E0E0;
    color: var(--gl-text-muted);
    cursor: not-allowed;
}

.custom-pagination-fraction {
    font-size: var(--fs-normal);
    font-weight: 500;
    color: var(--gl-text-main);
}

@media (min-width: 992px) {
    .card-tantangan-title {
        margin-bottom: 12px;
        min-height: 72px;
        display: flex;
        align-items: flex-start;
    }

    .section-title {
        font-size: var(--fs-h2);
        line-height: 38px;
    }

    .custom-carousel-controls {
        display: none !important;
    }

    .carousel-to-grid .splide__track {
        overflow: visible !important;
    }

    .carousel-to-grid .splide__list {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        transform: none !important;
        width: 100% !important;
    }

    .carousel-to-grid .splide__slide {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
        margin-right: 0 !important;
        padding: 12px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .carousel-to-grid .custom-carousel-controls,
    .carousel-to-grid .splide__pagination,
    .carousel-to-grid .splide__arrows {
        display: none !important;
    }

    /* kalau disuruh balik ke 3 v 2 hapus 2 css dibawahs */
    .carousel-to-grid .splide__slide {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }

    /* Card ke-5 full width */
    .carousel-to-grid .splide__slide:nth-child(5) {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ===== TANTANGAN SECTION STYLES END ===== */

/* ===== DUKUNGAN SECTION STYLES START ===== */
#dukungan {
    background-color: #F8FAFC;
    /* Warna latar off-white/light-blue sesuai desain */
}

.card-dukungan {
    border: none;
    border-top: 8px solid #BDE4F8;
    /* Aksen biru muda di atas */
    border-radius: var(--border-radius-lg);
    background: var(--gl-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.icon-circle-dukungan,
.icon-circle-pencapaian,
.icon-circle-step {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #E7F5FE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-circle-dukungan img,
.icon-circle-pencapaian img,
.icon-circle-step img {
    max-width: 40px;
    object-fit: contain;
}

.card-dukungan-title {
    font-size: var(--fs-card-head-big);
    font-weight: 700;
    color: var(--gl-text-main);
    margin-bottom: 12px;
    text-align: center;
    line-height: 24px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-dukungan-desc {
    font-size: var(--fs-card-sub);
    color: var(--gl-text-muted);
    line-height: 20px;
    /* text-align: justify; */
    margin: 0;
    min-height: 80px;
}

.splide__list .splide__slide:nth-child(2) .card-dukungan-desc {
    margin-bottom: 8px;
}

.list-dukungan {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-dukungan li {
    position: relative !important;
    padding-left: 28px !important;
    font-size: var(--fs-card-sub);
    color: var(--gl-text-muted);
    margin-bottom: 3px;
    display: block !important;
    line-height: 1.4;
    text-align: left !important;
}

.list-dukungan li:last-child {
    margin-bottom: 0;
}

.list-dukungan .iconify {
    position: absolute !important;
    left: 0;
    top: 2px;
    color: #2EBA63;
    font-size: 20px;
    margin: 0 !important;
}

.list-dukungan .iconify {
    color: #2EBA63;
    font-size: 20px;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}

@media (min-width: 992px) {
    .card-dukungan-title {
        line-height: 28px;
        min-height: 56px;
        margin-bottom: 16px;

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

    .card-dukungan-desc {
        line-height: 24px;
        min-height: 140px;
        margin-bottom: 0;
    }

    .splide__list .splide__slide:nth-child(2) .card-dukungan-desc {
        margin-bottom: 0px;
    }

    .card-dukungan .list-dukungan {
        margin-top: 10px !important;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .card-dukungan .list-dukungan li {
        display: flex;
        align-items: flex-start;
        /* line-height: 1.5; */
    }

    .card-dukungan .list-dukungan li .iconify {
        flex-shrink: 0;
        margin-right: 12px;
    }
}

/* ===== DUKUNGAN SECTION STYLES END ===== */

/* ===== SEKILAS SECTION STYLES ===== */
.card-sekilas {
    border: 1px solid #EAEAEA;
    border-radius: var(--border-radius-base);
    background: var(--gl-white);
    box-shadow: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-sekilas .card-body {
    padding: 10px;
    flex-grow: 1;
}

.card-sekilas-title {
    font-size: var(--fs-card-head-small);
    font-weight: 700;
    color: var(--gl-text-main);
    /* margin-bottom: 25px; */
    line-height: 24px;
}

.card-sekilas-desc {
    font-size: var(--fs-card-sub);
    color: var(--gl-text-muted);
    line-height: 20px;
    margin-bottom: 0;
}

/* Custom Controls Khusus Sekilas (Responsive) */
.sekilas-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
    margin-top: 24px;
}

.sekilas-controls .splide__arrow {
    position: static;
    transform: none;
    background: var(--gl-secondary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--gl-text-main);
    transition: all 0.3s ease;
}

.sekilas-controls .splide__arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Desktop Override Khusus Sekilas */
@media (min-width: 992px) {

    .gl-carousel-sekilas {
        padding: 0px;
        /* kasih ruang biar arrow ga nabrak card */
    }

    .sekilas-controls {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
        z-index: 20;
        pointer-events: none;
    }

    .sekilas-controls .splide__arrow {
        pointer-events: auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    /* BENER-BENER keluar dari area konten */
    .sekilas-controls .splide__arrow--prev {
        left: -21px;
    }

    .sekilas-controls .splide__arrow--next {
        right: -21px;
    }

    .sekilas-controls .custom-pagination-fraction {
        display: none !important;
    }
}

/* ===== SEKILAS SECTION STYLES END ===== */

/* ===== PENCAPAIAN SECTION STYLES START ===== */
/* UNTUK ICON UTAMA KU TARUH BARENGAN DI ICON-CIRCLE-DUKUNGAN BIAR GA DRY */
.icon-circle-pencapaian {
    margin: 0;
    width: 60px;
    height: 60px;
}

/* ===== PENCAPAIAN SECTION STYLES END ===== */

/* ===== TESTIMONI SECTION STYLES START ===== */
#testimoni {
    background-color: var(--gl-primary);
    overflow: hidden;
}

#testimoni .section-title {
    color: var(--gl-white);
}

.card-testimoni {
    border-radius: 8px;
    background: var(--gl-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: grab;
    width: 800px;
}

.card-testimoni:active {
    cursor: grabbing;
}

.icon-pimpinan {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E7F5FE;
}

.petik-atas-bg {
    position: absolute;
    top: 0px;
    left: -5px;
    width: 48px;
    opacity: 0.4;
    z-index: 1;
}

.text__testimoni {
    font-size: var(--fs-card-sub);
    color: var(--gl-text-main);
    line-height: 20px;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
    font-weight: 500;
}

.text__testimoni__name {
    font-size: var(--fs-card-sub);
    font-weight: 700;
    color: var(--gl-primary);
    margin-bottom: 4px;
    line-height: 20px;
}

.text__testimoni__role {
    font-size: var(--fs-card-sub);
    color: var(--gl-text-muted);
    line-height: 20px;
}

.text-truncate-mobile {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.text-truncate-mobile.expanded {
    -webkit-line-clamp: unset;
    display: block !important;
}

.text__testimoni .btn-read-more {
    font-size: var(--fs-card-sub);
    color: var(--gl-primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.text__testimoni .btn-read-more:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.gl-marquee-testimoni .splide__track {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.gl-marquee-testimoni .splide__slide {
    width: 750px;
    max-width: 85vw;
    height: auto;
}

@media (min-width: 768px) {
    .text-truncate-mobile {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
        margin-bottom: 0;
    }
}

/* ===== TESTIMONI SECTION STYLES END */

/* ===== STEP SECTION STYLES START ===== */
.step-title {
    font-size: var(--fs-normal);
    font-weight: 700;
    color: var(--gl-primary);
    line-height: 24px;
}

.step-desc {
    font-size: var(--fs-card-sub);
    line-height: 20px;
}

.icon-circle-step {
    width: 65px;
    height: 65px;
}

/* ===== STEP SECTION STYLES END ===== */

/* ===== DISKUSI SECTION STYLES START */
#diskusi {
    background-color: var(--gl-deep-blue);
}

#diskusi .section-title {
    color: var(--gl-white);
    line-height: 29px;
}

.diskusi-card {
    border-radius: 8px;
}

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.stepper::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e5e5e5;
}

.stepper-progress {
    position: absolute;
    top: 16px;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--gl-primary);
    transition: width .3s;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ddd;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 600;
}

.step-label {
    font-size: 12px;
    margin-top: 6px;
    color: #777;
}

.step.active .step-circle {
    background: var(--gl-primary);
    color: var(--gl-white);
}

.step.active .step-label {
    color: var(--gl-primary);
    font-weight: 500;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

@media (min-width:768px) {

    .step-circle {
        width: 36px;
        height: 36px;
    }

    .step-label {
        font-size: 14px;
    }

}

/* ===== FORM DISKUSI SECTION START ===== */
.active-date {
    border: 1px solid #2DAAE1;
    background-color: #BDEBFF;
}

.inactive-date {
    border: 1px solid #2DAAE1;
    background-color: var(--gl-white)FFF;
}

.active-time {
    border: 1px solid #2DAAE1 !important;
    background-color: #BDEBFF !important;
    color: #2DAAE1 !important;
}

#diskusi-form-app {
    font-family: var(--font-primary) !important;
    color: var(--gl-text-main);
}

.gl-card-form {
    border-radius: 6px;
    padding: 16px 16px;
    max-width: 800px;
    background: var(--gl-white);
}

.gl-form-label {
    font-size: var(--fs-normal);
    font-weight: 600;
    color: var(--gl-text-muted);
    margin-bottom: 6px;
    line-height: 24px;
}

.gl-form-control {
    border: 1px solid var(--gl-border);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    height: 42px;
    color: var(--gl-text-main);
}

.gl-form-control:focus {
    color: var(--gl-text-main);
    border-color: var(--gl-blue);
    box-shadow: 0 0 0 0.2rem rgba(45, 170, 225, 0.25);
}

.gl-input-group-text {
    background: #F1F3F5;
    border: 1px solid var(--gl-border);
    border-right: none;
    color: var(--gl-text-main);
    font-size: 14px;
}

.gl-input-group-text-right {
    background: #F1F3F5;
    border: 1px solid var(--gl-border);
    border-left: none;
    color: var(--gl-text-main);
    font-size: 14px;
}

.gl-form-control::placeholder {
    font-weight: 200 !important;
    opacity: 1;
}

.gl-form-control::-webkit-input-placeholder {
    font-weight: 200 !important;
}

.gl-form-control:-ms-input-placeholder {
    font-weight: 200 !important;
}

/* Checkbox Styling */
.gl-checkbox {
    display: flex;
    align-items: center;
}

.gl-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    border: 1px;
    border-color: var(--gl-border);
    accent-color: var(--gl-primary);
}

;

.gl-checkbox input[type="checkbox"]:active {
    transform: scale(0.95);
}

.gl-checkbox label {
    font-size: 14px;
    color: var(--gl-text-main);
    cursor: pointer;
    line-height: 1.4;
    margin-bottom: 0;
}

.gl-checkbox input[type="checkbox"]:checked+label {
    color: var(--gl-primary);
    font-weight: 500;
}

/* Buttons */
.gl-btn-yellow {
    background-color: var(--gl-secondary);
    color: var(--gl-text-main);
    border: none;
    border-radius: 6px;
}

.gl-btn-yellow:hover {
    background-color: #E6B700;
}

.gl-btn-blue {
    background-color: var(--gl-blue);
    color: var(--gl-white);
    border: none;
    border-radius: 6px;
}

.gl-btn-blue:hover {
    background-color: var(--gl-deep-blue);
    color: var(--gl-white);
}

.gl-btn-green {
    background-color: var(--gl-green);
    border: none;
    border-radius: 6px;
}

.gl-btn-green:hover {
    background-color: #218838;
}

.gl-btn-google {
    height: 42px;
    background-color: var(--gl-white);
    border-color: var(--gl-border);
    border-radius: 6px;
}

.gl-btn-google:hover {
    background-color: var(--gl-border);
}

/* Stepper */
.gl-stepper-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0 20px;
}

.gl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    width: 80px;
}

.gl-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E0E0E0;
    color: #4A4A4A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.gl-step.active .gl-step-circle {
    background-color: var(--gl-blue);
    color: var(--gl-white);
}

.gl-step-text {
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
}

.gl-step-text.text-primary {
    color: var(--gl-blue) !important;
}

.gl-step-line {
    flex-grow: 1;
    height: 2px;
    background-color: #E0E0E0;
    margin-top: 15px;
    z-index: 1;
    transition: all 0.3s;
}

.gl-step-line.active {
    background-color: var(--gl-blue);
}

/* Table Summary (Step 3) */
.gl-summary-table {
    border: 1px solid var(--gl-border);
    border-radius: 6px;
    overflow: hidden;
    font-size: 13px;
}

.gl-summary-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--gl-border);
}

.gl-summary-label {
    background-color: #F8F9FA;
    font-weight: 600;
    padding: 10px 12px;
    width: 30%;
    border-right: 1px solid var(--gl-border);
}

.gl-summary-value {
    padding: 10px 12px;
    width: 70%;
}

.gl-summary-value-full {
    padding: 10px 12px;
    width: 70%;
}

/* Date & Time Picker */
.gl-date-scroll-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.gl-date-scroll-container::-webkit-scrollbar {
    display: none;
}

.gl-date-card {
    width: 100%;
    border: 1px solid var(--gl-border);
    border-radius: 6px;
    padding: 12px 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.gl-date-card.active {
    background-color: #E3F2FD;
    border-color: var(--gl-blue);
}

.gl-date-day {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--gl-text-light);
}

.gl-date-num {
    font-size: 20px;
    font-weight: bold;
    color: var(--gl-text-main);
    line-height: 1.2;
}

.gl-date-month {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--gl-text-light);
}

.gl-date-card.active .gl-date-day,
.gl-date-card.active .gl-date-month {
    color: var(--gl-blue);
}

.gl-gap-2 {
    gap: 10px;
}

.gl-time-pill {
    border: 1px solid var(--gl-blue);
    color: var(--gl-blue);
    background: transparent;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

.gl-time-pill.active {
    background-color: #E3F2FD;
}

/* Animations */
.gl-fade-slide-enter-active,
.gl-fade-slide-leave-active {
    transition: all 0.3s ease;
}

.gl-fade-slide-enter,
.gl-fade-slide-leave-to {
    opacity: 0;
    transform: translateX(10px);
}

/* Desktop overrides */
@media (min-width: 992px) {
    .gl-card-form {
        padding: 40px;
    }

    .gl-stepper-container {
        padding: 0 100px;
    }

    .gl-step-text {
        font-size: 13px;
    }

    .gl-summary-label {
        width: 15%;
    }

    .gl-summary-value {
        width: 35%;
        border-right: 1px solid var(--gl-border);
    }

    .gl-summary-row .gl-summary-value:last-child {
        border-right: none;
    }

    .gl-summary-value-full {
        width: 85%;
    }

    .gl-date-card {
        min-width: 80px;
    }

    .gl-date-num {
        font-size: 24px;
    }
}

/* ===== FORM DISKUSI SECTION END */