:root {
    --maroon: #6b0f1a;
    --maroon-dark: #4a0b12;
    --maroon-light: #8b1a26;
    --maroon-pale: #f9e4e6;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --text-dark: #1a0a0c;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    color: var(--gray-800);
    overflow-x: hidden;
}
.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    transition: all 0.4s ease;
    padding: 18px 0;
}
.navbar-main.scrolled {
    background: rgba(107, 15, 26, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-brand-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 0;
    border: none;
}
.nav-brand-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    transition: all 0.25s;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}
.nav-links .btn-dashboard {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--maroon-dark) !important;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}
.nav-links .btn-dashboard:hover {
    background: var(--gold-light);
    color: var(--maroon-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
}
.hero {
    min-height: 100vh;
    background:
        linear-gradient(
            135deg,
            rgba(74, 11, 18, 0.92) 0%,
            rgba(107, 15, 26, 0.88) 50%,
            rgba(30, 4, 8, 0.95) 100%
        ),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.12) 0%,
        transparent 65%
    );
    animation: pulse-glow 6s ease-in-out infinite;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.08) 0%,
        transparent 65%
    );
    animation: pulse-glow 6s ease-in-out infinite 3s;
}
@keyframes pulse-glow {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--maroon-dark);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(201, 168, 76, 0.45);
    color: var(--maroon-dark);
}
.btn-hero-secondary {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-card-float {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 380px;
    position: relative;
}
.hero-icon-big {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--maroon-dark);
    margin-bottom: 20px;
}
.hero-card-float h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.hero-card-float p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0;
}
.float-badge {
    position: absolute;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--maroon-dark);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 8px 16px;
    border-radius: 50px;
    top: -16px;
    right: -16px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.scroll-dot {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}
.scroll-dot::after {
    content: "";
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    80% {
        transform: translateY(14px);
        opacity: 0;
    }
}
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.25;
}
.section-title span {
    color: var(--maroon);
}
.section-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.75;
}
.divider-gold {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin-bottom: 20px;
}
.section-py {
    padding: 80px 0;
    background: var(--gray-50);
}
.section-py.bg-white {
    background: #fff;
}
.timeline-wrap {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}
.timeline-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent,
        var(--maroon) 10%,
        var(--maroon) 90%,
        transparent
    );
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    position: relative;
    margin-bottom: 24px;
}
.timeline-half {
    width: 50%;
}
.timeline-half.timeline-left {
    padding-right: 48px;
}
.timeline-half.timeline-right {
    padding-left: 48px;
}
.timeline-node {
    position: absolute;
    left: 50%;
    top: 24px;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.timeline-node-inner {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(107, 15, 26, 0.3);
}
.timeline-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    position: relative;
    transition: all 0.3s;
}
.timeline-half.timeline-left .timeline-card {
    border-right: 4px solid var(--maroon);
    border-left: none;
}
.timeline-half.timeline-right .timeline-card {
    border-left: 4px solid var(--maroon);
    border-right: none;
}
.timeline-card:hover {
    box-shadow: 0 8px 30px rgba(107, 15, 26, 0.15);
    transform: translateY(-3px);
}
.timeline-card .badge-periode {
    display: inline-block;
    background: var(--maroon-pale);
    color: var(--maroon);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.timeline-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.timeline-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}
.syarat-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
}
.syarat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maroon), var(--maroon-light));
    transform: scaleX(0);
    transition: transform 0.35s;
}
.syarat-card:hover::before {
    transform: scaleX(1);
}
.syarat-card:hover {
    box-shadow: 0 12px 35px rgba(107, 15, 26, 0.12);
    transform: translateY(-6px);
    border-color: transparent;
}
.syarat-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.syarat-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.syarat-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.75;
}
.syarat-desc p,
.syarat-desc ul,
.syarat-desc ol {
    margin-bottom: 0;
}
.beasiswa-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: all 0.35s;
}
.beasiswa-card:hover {
    box-shadow: 0 16px 45px rgba(107, 15, 26, 0.16);
    transform: translateY(-8px);
}
.beasiswa-card-header {
    background: linear-gradient(
        135deg,
        var(--maroon) 0%,
        var(--maroon-light) 100%
    );
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
}
.beasiswa-card-header::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}
.beasiswa-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold-light);
    margin-bottom: 16px;
}
.beasiswa-card-header h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.beasiswa-card-body {
    padding: 28px;
}
.beasiswa-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}
.beasiswa-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.beasiswa-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--maroon);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.beasiswa-section-content {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.75;
}
.beasiswa-section-content ul,
.beasiswa-section-content ol {
    padding-left: 18px;
    margin-bottom: 0;
}
.beasiswa-section-content p {
    margin-bottom: 0;
}
.pengumuman-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 24px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.pengumuman-card:hover {
    border-color: var(--maroon);
    box-shadow: 0 8px 28px rgba(107, 15, 26, 0.12);
    transform: translateY(-3px);
    color: inherit;
}
.pengumuman-date-box {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    color: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 12px 14px;
    min-width: 58px;
    flex-shrink: 0;
}
.pengumuman-date-day {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}
.pengumuman-date-month {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pengumuman-content {
    flex: 1;
    min-width: 0;
}
.pengumuman-badge {
    display: inline-block;
    background: var(--maroon-pale);
    color: var(--maroon);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.pengumuman-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pengumuman-link {
    font-size: 0.75rem;
    color: var(--maroon);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-600);
}
.empty-state i {
    font-size: 48px;
    color: var(--gray-200);
    margin-bottom: 16px;
    display: block;
}
footer {
    background: var(--maroon-dark);
    color: rgba(255, 255, 255, 0.75);
}
.footer-top {
    padding: 64px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 14px;
}
.footer-brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.footer-desc {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    max-width: 300px;
}
.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.25s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: var(--gold-light);
}
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}
.footer-copyright span {
    color: rgba(255, 255, 255, 0.65);
}
.footer-made {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 991px) {
    .timeline-wrap::before {
        left: 20px;
    }
    .timeline-item {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .timeline-half {
        width: 100% !important;
        padding-left: 56px !important;
        padding-right: 0 !important;
    }
    .timeline-half.empty {
        display: none !important;
    }
    .timeline-half.timeline-left .timeline-card,
    .timeline-half.timeline-right .timeline-card {
        border-right: none !important;
        border-left: 4px solid var(--maroon) !important;
    }
    .timeline-node {
        left: 20px;
        top: 24px;
        transform: translate(-50%, -50%);
    }
    .hero-visual {
        display: none;
    }
}
@media (max-width: 767px) {
    .nav-links a:not(.btn-dashboard) {
        display: none;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .section-py {
        padding: 56px 0;
    }
}
