
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0633ff 0%, #1022e9 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    color: white !important;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand {
    color: #333 !important;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: #333 !important;
}

.nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.navbar.scrolled .nav-link:hover {
    color: #2da0a8 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #2da0a8;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.hero-section {
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-section .d-flex {
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary {
    background: linear-gradient(45deg, #2da0a8, #4ecdc4);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 160, 168, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #238a91, #3bb5b8);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(45, 160, 168, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.2);
}

.card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card i {
    transition: all 0.3s ease;
}

.card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #2da0a8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

#authModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
}

#container {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
    width: 50%;
}

.sign-in {
    left: 0;
    z-index: 2;
}

.sign-up {
    left: 0;
    opacity: 0;
    z-index: 1;
}

#container.active .sign-in {
    transform: translateX(100%);
}

#container.active .sign-up {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
}

.toggle-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    border-radius: 150px 0 0 100px;
    z-index: 1000;
}

#container.active .toggle-container {
    transform: translateX(-100%);
    border-radius: 0 150px 100px 0;
}

.toggle {
    background: linear-gradient(to right, #5c6bc0, #2da0a8);
    height: 100%;
    color: #fff;
    position: relative;
    left: -100%;
    width: 200%;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

#container.active .toggle {
    transform: translateX(50%);
}

.toggle-panel {
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    text-align: center;
    top: 0;
    transition: all 0.6s ease-in-out;
}

.toggle-left {
    transform: translateX(-200%);
}

#container.active .toggle-left {
    transform: translateX(0);
}

.toggle-right {
    right: 0;
    transform: translateX(0);
}

#container.active .toggle-right {
    transform: translateX(200%);
}
.subtitle {
    text-align: center;
    color: #777777;
    margin-bottom: 20px;
}

.item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

.item:last-child {
    border-bottom: none;
}

.circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #d1d5db;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.item.active .circle {
    background: #22c55e;
}

.content h4 {
    margin: 0;
}

.content p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #0c0c0c;
}

.status {
    margin-left: auto;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.berlangsung {
    background: #000000;
    color: #ffffff;
}

.menunggu {
    background: #fef3c7;
    color: #f59e0b;
}

.selesai {
    background: #fef3c7;
    color: #ffffff;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
            display: none;
}

@media (max-width: 991px) {

    .hero-section {
        padding: 120px 20px 70px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-top: 20px;
    }

    .hero-section .lead {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-section .d-flex {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px !important;
    }

    .hero-section .btn {
        width: 100%;
        max-width: 280px;
        font-size: 14px;
        padding: 12px 20px;
    }

    .hero-section img.floating {
        width: 100%;
        max-width: 320px;
        max-height: 320px;
        object-fit: cover;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {

    .navbar-brand {
        font-size: 1rem !important;
    }

    .hero-section {
        padding-top: 110px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section .lead {
        font-size: 0.95rem;
    }

    .hero-section .btn {
        max-width: 100%;
        border-radius: 15px;
    }

    .hero-section img.floating {
        max-width: 260px;
    }
}

.custom-modal {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.custom-modal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    animation: modalFade .35s ease;
    font-family: 'Nunito', sans-serif;
}

.custom-modal .modal-header {
    background: linear-gradient(135deg, #4154f1, #6577ff);
    color: white;
    border: none;
    padding: 18px 22px;
}

.custom-modal .modal-title {
    width: 100%;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: .5px;
}

.custom-modal .modal-body {
    padding: 25px;
    background: #ffffff;
    color: #333;
    text-align: center;
}

.custom-modal .info-box {
    background: #f8f9ff;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid #e4e8ff;
}

.custom-modal .info-box h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #2434b5;
    margin-bottom: 10px;
}

.custom-modal .info-box span {
    color: #ff9800;
}

.custom-modal .date {
    font-weight: 700;
    color: #e53935;
    margin-bottom: 6px;
}

.custom-modal small {
    color: #666;
    font-size: .9rem;
}

.custom-modal p {
    margin-bottom: 0;
    line-height: 1.7;
    text-align: center;
}

.custom-modal ul {
    padding-left: 18px;
    margin-bottom: 12px;
    text-align: left;
}

.custom-modal .wa-link {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 18px;
    background: #25d366;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.custom-modal .wa-link:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    color: white;
}

.custom-modal .modal-footer {
    border: none;
    padding: 18px;
    background: #fff;
    justify-content: center;
}

.custom-modal .btn-primary {
    background: #4154f1;
    border: none;
    border-radius: 10px;
    padding: 10px 28px;
    font-weight: 700;
    transition: .3s;
}

.custom-modal .btn-primary:hover {
    background: #3142d3;
    transform: translateY(-2px);
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hidden-close{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .5s ease;
}

.hidden-close.show-close{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dokumen-text{
    font-size: 13px;
    line-height: 1.7;
    color: #555;
}

.content-box{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        max-height 0.5s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
}

.content-box.active{
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

.info-box .d-flex{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.info-box .btn{
    width:auto !important;
}

.button-group-custom{
    display:flex !important;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-direction:row !important;
    flex-wrap:nowrap;
}

.button-group-custom button{
    width:auto !important;
    display:inline-block !important;
    white-space:nowrap;
}

.custom-doc-btn{
    margin-top:8px;
    padding:10px 18px;
    border-radius:10px;
    font-weight:700;
}