:root {
    --primary: #2563eb;
    --secondary: #1e40af;
    --accent: #f59e0b;
    --dark: #0f172a;
    --light: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(245, 158, 11, 0.6),
            0 0 60px rgba(245, 158, 11, 0.4);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateGradient {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
        opacity: 0.6;
    }

    50% {
        opacity: 0.8;
        transform: translateX(100px);
    }

    100% {
        bottom: 110%;
        transform: translateX(-100px);
        opacity: 0;
    }
}

/* Navbar Transparan Cantik */
.navbar {
    background: transparent !important;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(50px);
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
    background: var(--gradient-primary) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    height: 42px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.08) rotate(5deg);
}

.brand-text {
    color: white;
    line-height: 1.3;
}

.brand-text .small {
    font-size: 0.7rem;
    opacity: 0.95;
}

.brand-text .large {
    font-size: 1rem;
    font-weight: 700;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 18px !important;
    margin: 0 4px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 991px) {
    .nav-link {
        margin: 8px 0;
        padding: 12px 20px !important;
    }

    .navbar-nav {
        padding: 15px 0;
    }

    .navbar-collapse {
        margin-top: 15px;
    }
    .featured-card {
        padding: 30px;
    }
}

.nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: white !important;
    background: linear-gradient(135deg, var(--accent), #ef9c0b);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* Hero Modern dengan Background Lebih Transparan */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.7) 0%,
            rgba(30, 64, 175, 0.65) 100%
        ),
        url("../img/banner/setda-balkot.jpg") center/cover no-repeat fixed;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(96, 165, 250, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(245, 158, 11, 0.15) 0%,
            transparent 50%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
}

/* Button Keren dengan Animasi */
.btn-hero {
    padding: 16px 40px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--accent), #ef9c0b);
    color: white;
}

.btn-primary-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(245, 158, 11, 0.5);
    color: var(--light);
    opacity: 0.9;
}

.btn-outline-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-hero:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.3);
}

/* Section Styling */
.section {
    padding: 90px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 10px;
}

.section-title p {
    font-size: 1.05rem;
    color: #64748b;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section dengan Animasi */
.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.about-section h2 {
    font-weight: 800;
    color: var(--dark);
    font-size: 2.3rem;
    margin-bottom: 1.3rem;
    animation: slideInLeft 0.8s ease;
    line-height: 1.3;
}

.about-section p {
    color: #475569;
    line-height: 1.8;
    font-size: 1rem;
    animation: slideInLeft 1s ease;
    margin-bottom: 1.5rem;
}

.about-section h5 {
    font-weight: 700;
    color: var(--dark);
    margin-top: 1.8rem;
    margin-bottom: 1.3rem;
    animation: slideInLeft 1.2s ease;
    font-size: 1.15rem;
}

.about-section ul li {
    margin-bottom: 1rem;
    color: #475569;
    display: flex;
    align-items: center;
    animation: slideInLeft 1.4s ease;
    font-size: 0.95rem;
}

.about-section ul li i {
    font-size: 1.2rem;
    margin-right: 0.9rem;
    color: #10b981;
    flex-shrink: 0;
}

.about-section img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
    animation: slideInRight 1s ease, float 6s infinite ease-in-out;
    width: 100%;
}

.btn-about {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.4s ease;
    margin-top: 1.3rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    font-size: 0.95rem;
}

.btn-about:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.35);
    color: var(--light);
    opacity: 0.9;
}

/* Stats Section dengan Bubble Animation */
.stats-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Bubble Animation */
.stats-section .bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0.6;
    animation: rise 15s infinite ease-in;
    z-index: 0;
}

.stats-section .bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.stats-section .bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-duration: 14s;
    animation-delay: 2s;
}

.stats-section .bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 35%;
    animation-duration: 10s;
    animation-delay: 4s;
}

.stats-section .bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 50%;
    animation-duration: 16s;
    animation-delay: 0s;
}

.stats-section .bubble:nth-child(5) {
    width: 45px;
    height: 45px;
    left: 65%;
    animation-duration: 13s;
    animation-delay: 3s;
}

.stats-section .bubble:nth-child(6) {
    width: 35px;
    height: 35px;
    left: 80%;
    animation-duration: 11s;
    animation-delay: 1s;
}

.stats-section .bubble:nth-child(7) {
    width: 55px;
    height: 55px;
    left: 90%;
    animation-duration: 15s;
    animation-delay: 5s;
}

.stats-section .bubble:nth-child(8) {
    width: 25px;
    height: 25px;
    left: 15%;
    animation-duration: 9s;
    animation-delay: 2s;
}

.stats-section .bubble:nth-child(9) {
    width: 70px;
    height: 70px;
    left: 40%;
    animation-duration: 17s;
    animation-delay: 1s;
}

.stats-section .bubble:nth-child(10) {
    width: 40px;
    height: 40px;
    left: 75%;
    animation-duration: 12s;
    animation-delay: 4s;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.8) translateY(30px);
}

.stat-item.animate-in {
    animation: fadeInScale 0.6s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}
.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}
.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}
.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-item::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: rotateGradient 3s linear infinite;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        rgba(245, 158, 11, 0.9),
        rgba(251, 191, 36, 0.9)
    );
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.stat-icon-wrapper::after {
    content: "";
    position: absolute;
    inset: -3px;
    background: linear-gradient(
        135deg,
        rgba(245, 158, 11, 0.6),
        rgba(251, 191, 36, 0.6)
    );
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: glow 2s infinite;
}

.stat-item:hover .stat-icon-wrapper {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.6);
    animation: bounce 0.6s ease;
}

.stat-item:hover .stat-icon-wrapper::after {
    opacity: 1;
}

.stat-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
    animation: pulse 2s infinite;
}

.stat-item:hover .stat-icon-wrapper i {
    animation: none;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 600;
    line-height: 1.5;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    transform: translateY(-5px);
    opacity: 1;
}

/* Procedure Section */
.procedure-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.procedure-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.8rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.procedure-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 35px rgba(37, 99, 235, 0.12);
    border-color: rgba(245, 158, 11, 0.25);
}

.procedure-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent), #ef9c0b);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    margin-right: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 18px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.procedure-item:hover .procedure-number {
    transform: rotate(360deg) scale(1.08);
}

.procedure-item h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    font-size: 1.08rem;
    line-height: 1.4;
}

.procedure-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.6;
}

.stats-section {
    background: linear-gradient(135deg, #2179f5, #4ea3ff);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon-wrapper {
    background: #ffb200;
    color: white;
    font-size: 32px;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-number-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
}

.stat-suffix {
    font-size: 22px;
    font-weight: 600;
    margin-left: 4px;
    line-height: 1.3;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    color: #fff;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.15);
}

.news-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-card .card-body {
    padding: 1.8rem;
}

.news-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.9rem;
    font-size: 1.08rem;
    line-height: 1.5;
}

.news-card p {
    color: #64748b;
    margin-bottom: 1.3rem;
    line-height: 1.6;
    font-size: 0.93rem;
}

.btn-news {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.25);
}

.btn-news:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

/* Feature Cards dengan Hover Keren */
.feature-card {
    background: white;
    border-radius: 18px;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.04),
        rgba(245, 158, 11, 0.04)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.15);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: rotate(8deg) scale(1.12);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.35);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.9rem;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.93rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.btn-feature {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.25);
}

.btn-feature:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
    color: var(--light);
    opacity: 0.9;
}

.btn-news:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
    color: var(--light);
    opacity: 0.9;
}

/* Footer dengan Animasi Subtle & Keren */
footer {
    background: var(--gradient-primary);
    color: white;
    padding: 4.5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23FFFFFF"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23FFFFFF"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23FFFFFF"></path></svg>');
    background-size: cover;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    position: relative;
}

.footer-logo .d-flex {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.3rem;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.8rem;
    transition: all 0.3s ease;
}

.footer-logo .d-flex:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.footer-logo img {
    height: 65px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.04) rotate(3deg);
}

.footer-logo h5 {
    font-weight: 700;
    font-size: 1.7rem;
    background: linear-gradient(45deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.footer-logo p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.93rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 22px;
    font-size: 0.93rem;
}

.footer-links a::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 26px;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 18px rgba(251, 191, 36, 0.3);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.8rem;
    margin-top: 2.8rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Loading Animation */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .stat-item {
        padding: 2rem 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 1.2rem;
    }

    .stat-icon-wrapper i {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .stats-section {
        padding: 60px 0;
    }

    .section {
        padding: 60px 0;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .feature-card,
    .news-card {
        margin-bottom: 1.5rem;
    }

    .btn-hero {
        padding: 14px 32px;
        font-size: 0.9rem;
    }

    .footer-logo h5 {
        font-size: 1.5rem;
    }

    .footer-logo img {
        height: 55px;
    }
    .hero-section-menu {
        padding: 120px 0 80px;
    }

    .hero-section-menu h1 {
        font-size: 2rem;
    }

    .hero-section-menu p {
        font-size: 1rem;
    }

    .form-card {
        padding: 2rem 1.4rem !important;
        margin-top: 2rem;
        border-radius: 20px;
    }

    .form-card h3 {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .section-title-menu {
        font-size: 1.2rem;
    }

    .btn-primary,
    .btn-outline-secondary,
    .btn-download {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.8rem;
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }

    .info-card {
        margin-bottom: 1.5rem;
    }

    .faq-title h2 {
        font-size: 1.8rem;
    }

    .preview-label {
        width: 140px;
        font-size: 0.85rem;
    }

    .preview-value {
        font-size: 0.85rem;
    }

    .search-card {
        padding: 2rem 1.4rem !important;
        margin-top: 1.5rem;
    }

    .history-header {
        padding: 1.5rem;
    }

    .history-body {
        padding: 2rem 1.5rem 1.5rem;
    }

    .info-label {
        width: 120px;
        font-size: 0.85rem;
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .nav-link {
        margin: 8px 0;
        padding: 12px 20px !important;
    }
    .announcement-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .btn-hero {
        width: 100%;
        margin-bottom: 0.8rem;
    }

    .stat-item {
        padding: 1.8rem 0.8rem;
        margin-bottom: 1.2rem;
    }

    .stat-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
        border-radius: 15px;
    }

    .stat-icon-wrapper i {
        font-size: 1.7rem;
    }

    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.4rem;
    }

    .stat-label {
        font-size: 0.88rem;
        line-height: 1.3;
        padding: 0 0.3rem;
    }

    .stats-section .row {
        margin: 0 -5px;
    }

    .stats-section .col-md-3 {
        padding: 0 5px;
    }
}

/* Hero Section */
.hero-section-menu {
    background: var(--gradient-primary);
    margin-top: 1rem;
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
}

.hero-section-menu h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.hero-section-menu p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Info Cards Section */
.info-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.1);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-card-icon i {
    font-size: 1.8rem;
    color: white;
}

.info-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 0.6rem 0;
    color: #475569;
    display: flex;
    align-items: flex-start;
    font-size: 0.93rem;
    line-height: 1.6;
}

.info-card ul li i {
    color: #10b981;
    margin-right: 0.7rem;
    margin-top: 0.2rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-card .price-tag {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
}

.info-card .price-tag .price {
    font-size: 2rem;
    font-weight: 800;
    color: #92400e;
    display: block;
}

.info-card .price-tag .price-label {
    font-size: 0.85rem;
    color: #92400e;
    font-weight: 600;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 3rem 3.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.form-card h3 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    background: white;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.15);
    background: white;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.section-divider {
    border: 0;
    border-top: 2px solid #e2e8f0;
    margin: 2.5rem 0;
}

.section-title-menu {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-menu i {
    font-size: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.btn-outline-secondary {
    border: 2px solid #64748b;
    color: #64748b;
    background: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: #64748b;
    color: white;
    transform: translateY(-3px);
    border-color: #64748b;
}

.btn-download {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    color: white;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-check:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.02);
}

.form-check-input {
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.15rem;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
}

/* 🔹 Responsif untuk tampilan mobile */
@media (max-width: 600px) {
    .form-check {
        flex-direction: row;
        align-items: center;
        padding: 0.8rem 1rem;
        border-radius: 10px;
    }

    .form-check-input {
        width: 1rem;
        height: 1rem;
        margin-top: 0;
    }

    .form-check-label {
        font-size: 0.9rem;
        margin-left: 0.4rem;
    }
}

/* 🔹 Tambahan: mode sentuh lebih mudah */
@media (max-width: 400px) {
    .form-check {
        padding: 0.7rem 0.9rem;
    }

    .form-check-label {
        font-size: 0.88rem;
    }
}

small.text-muted {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #64748b;
}

.alert {
    border-radius: 16px;
    border: none;
    padding: 1.2rem 1.5rem;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.faq-title p {
    color: #64748b;
    font-size: 1.05rem;
}

.accordion-item {
    border: 2px solid #e2e8f0;
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
}

.accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 1.3rem 1.5rem;
    background: white;
    color: var(--dark);
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.05),
        rgba(59, 130, 246, 0.05)
    );
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
}

/* Preview Modal */
.preview-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.preview-section h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.preview-item {
    display: flex;
    padding: 0.7rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.preview-item:last-child {
    border-bottom: none;
}

.preview-label {
    font-weight: 600;
    color: #64748b;
    width: 180px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.preview-value {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Modal Styling */
.modal-content {
    border-radius: 24px;
    border: none;
}

.modal-body {
    border-radius: 24px;
}

.modal-body i.bi-check-circle-fill {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes inputFocus {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }

    100% {
        transform: scale(1);
    }
}

/* Required Asterisk */
.text-danger {
    color: #dc2626 !important;
}

/* Search Card */
.search-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 2.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

/* Ticket Card */
.ticket-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 2rem;
    border: 2px solid #e2e8f0;
}

.ticket-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    position: relative;
}

.ticket-header::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.ticket-body {
    padding: 3rem 2rem 2rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-pending {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.status-verified {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.status-scheduled {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.status-completed {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.status-rejected {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
}

.info-label {
    font-weight: 600;
    color: #64748b;
    width: 100px;
    flex-shrink: 0;
}

.qr-code-container {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.qr-code-placeholder {
    width: 200px;
    height: 200px;
    background: white;
    border: 3px dashed #cbd5e1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: #cbd5e1;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e2e8f0;
    z-index: 2;
}

.timeline-dot.active {
    border-color: var(--primary);
    background: var(--primary);
}

.timeline-dot.completed {
    border-color: #10b981;
    background: #10b981;
}

.timeline-content {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 3px solid transparent;
}

.timeline-item.active .timeline-content {
    border-left-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.timeline-item.completed .timeline-content {
    border-left-color: #10b981;
}

/* History Card */
.history-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 2rem;
    border: 2px solid #e2e8f0;
}

.history-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    position: relative;
}

.history-header::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.history-body {
    padding: 2.5rem 2rem 2rem;
}

.history-item {
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-lulus {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.status-tidak-lulus {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
}

.info-row {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    gap: 1rem;
}

.info-row:last-child {
    border-bottom: none;
}

.info-value {
    color: var(--dark);
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e2e8f0;
    z-index: 2;
}

.timeline-dot.completed {
    border-color: #10b981;
    background: #10b981;
}

.timeline-content {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 3px solid transparent;
}

.timeline-item.completed .timeline-content {
    border-left-color: #10b981;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 76px;
    z-index: 100;
}

/* Announcement Cards */
.announcement-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.announcement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.announcement-image {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.announcement-card:hover .announcement-image {
    transform: scale(1.08);
}

.announcement-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-urgent {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    animation: pulse-urgent 2s infinite;
}

@keyframes pulse-urgent {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge-important {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.badge-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.badge-update {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

/* Featured Card */
.featured-card {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.featured-card .badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 80px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.service-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card.active {
    border-color: #0d6efd;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
}

.service-card.active .service-icon {
    color: white;
}

.service-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 10px;
}

.service-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.date-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
}

.date-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd;
}

.date-card.active {
    border-color: #0d6efd;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
}

.date-card .day-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.date-card .date-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.date-card .month-year {
    font-size: 0.85rem;
}

.date-card.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
}

.date-card.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: #e0e0e0;
}

.requirement-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.requirement-card h5 {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0d6efd;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-card li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.requirement-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: bold;
    font-size: 1.2rem;
}

#dateSelectionSection,
#formSection,
#requirementsSection {
    display: none;
}

#nomorKontrolGroup {
    display: none;
}

.selected-info-badge {
    display: inline-block;
    background: #0d6efd;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    margin: 5px;
}
