:root {
    --pk-teal: #00A99D;
    --pk-teal-hover: #008f85;
    --pk-teal-light: rgba(0, 169, 157, 0.08);
    --pk-green: #8CC63F;
    --pk-green-hover: #7ab332;
    --pk-dark: #1E293B;
    --pk-gray-bg: #F8FAFC;
    --pk-card-border: rgba(226, 232, 240, 0.8);
    --font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--pk-gray-bg);
    font-family: var(--font-family);
    color: #334155;
    overflow-x: hidden;
}

/* Glassmorphism Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.nav-link-custom {
    color: #64748B !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.1rem !important;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--pk-teal) !important;
    background-color: var(--pk-teal-light);
}

/* Custom Buttons */
.btn-pk-primary {
    background-color: var(--pk-teal);
    color: white !important;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 169, 157, 0.3);
    transition: all 0.3s ease;
}

.btn-pk-primary:hover {
    background-color: var(--pk-teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 169, 157, 0.4);
}

.btn-pk-secondary {
    background-color: var(--pk-green);
    color: white !important;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 14px rgba(140, 198, 63, 0.3);
    transition: all 0.3s ease;
}

.btn-pk-secondary:hover {
    background-color: var(--pk-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 198, 63, 0.4);
}

/* Page Section Animations */
.page-section {
    display: block;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Hero Section */
.hero-section {
    background: radial-gradient(circle at 80% 20%, rgba(140, 198, 63, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 169, 157, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 120px 0 80px 0;
    position: relative;
}

/* Card Custom Styling */
.card-custom {
    background: #FFFFFF;
    border: 1px solid var(--pk-card-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(241, 245, 249, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

/* Custom Floating Form Controls */
.form-control-custom {
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 12px !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-control-custom:focus {
    border-color: var(--pk-teal) !important;
    box-shadow: 0 0 0 4px rgba(0, 169, 157, 0.15) !important;
    background-color: #FFF;
}

.form-select-custom {
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 12px !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-select-custom:focus {
    border-color: var(--pk-teal) !important;
    box-shadow: 0 0 0 4px rgba(0, 169, 157, 0.15) !important;
}

/* Calendar Grid Premium */
.calendar-header-day {
    background-color: #EDF2F7;
    color: #4A5568;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px;
    border: 1px solid #E2E8F0;
}

.calendar-day-box {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    min-height: 120px;
    position: relative;
    transition: all 0.2s ease;
}

.calendar-day-box:hover {
    background: #F8FAFC;
}

.calendar-date-number {
    font-weight: 700;
    font-size: 0.9rem;
    color: #64748B;
    padding: 6px 10px;
    display: inline-block;
}

.calendar-day-box.today .calendar-date-number {
    background-color: var(--pk-teal);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px;
}

/* Accordion Premium Style */
.accordion-premium .accordion-item {
    border: 1px solid var(--pk-card-border) !important;
    border-radius: 16px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(241, 245, 249, 0.5);
}

.accordion-premium .accordion-button {
    font-weight: 700;
    color: var(--pk-dark);
    padding: 1.25rem 1.5rem;
    background-color: #FFFFFF;
    box-shadow: none !important;
}

.accordion-premium .accordion-button:not(.collapsed) {
    background-color: var(--pk-teal-light);
    color: var(--pk-teal);
}

.accordion-premium .accordion-body {
    background-color: #FFFFFF;
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
    border-top: 1px solid var(--pk-card-border);
}

.accordion-premium .accordion-body strong {
    color: #1e293b;
    /* Warna yang lebih gelap atau kontras */
    font-weight: 700;
}

/* Step Indicator style */
.step-circle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    line-height: 32px;
    box-sizing: border-box;
    background-color: #E2E8F0;
    color: #64748B;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.step-active {
    background-color: var(--pk-teal);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--pk-teal);
    border-radius: 4px;
}