@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}

html, body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #333;
    background-color: #fafbfc;
    overscroll-behavior: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* Navbar */
/* Keadaan awal: Navbar transparan, teks berwarna putih */
.navbar {
    background-color: transparent;
    height: 80px;
    padding: 3.5rem;
    transition: all 0.3s ease-out;
}

.navbar-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.navbar .navbar-brand {
    font-weight: 800;
    color: #ffffff; /* Teks putih saat di atas (hero section gelap) */
    transition: color 0.3s ease;
    margin-right: 0;
    white-space: nowrap;
}

.navbar .navbar-collapse {
    justify-content: flex-end;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.navbar .navbar-brand img {
    transition: opacity 0.5s ease;
}

.logo-default {
    display: block;
}

.logo-scrolled {
    display: none;
}

.navbar.scrolled .logo-default {
    display: none;
}

.navbar.scrolled .logo-scrolled {
    display: block;
}

.navbar .nav-link {
    font-weight: 600;
    color: #ffffff; /* Teks putih saat di atas (hero section gelap) */
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: #cbd5e1; /* Warna hover yang lebih terang */
    transform: translateY(-2px);
}

.navbar-nav {
    gap: 10px;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(4, 29, 66, 0.079);
    padding: 1.5rem;
    transition: all 0.5s ease-in;
}
.navbar.scrolled .navbar-brand {
    font-weight: 800;
    color: #0f172a; 
}
.navbar.scrolled .nav-link {
    font-weight: 600;
    color: #334155; 
}

.navbar.scrolled .nav-link:hover {
    color: #0f172a;
}

/* Keadaan Awal: Tombol semi-transparan / Outline di atas background gelap */
.btn-cta-nav {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.btn-cta-nav:hover {
    background-color: white;
    color: #070d1e; /* Teks berubah gelap saat hover di atas */
    transform: translateY(-2px);
}

/* Perubahan Saat di-Scroll: Berubah jadi warna solid pekat */
.navbar.scrolled .btn-cta-nav {
    background-color: #1e3a8a; /* Warna biru tua pilihan Anda */
    color: white;
    border-color: #1e3a8a;
}
.navbar.scrolled .btn-cta-nav:hover {
    background-color: #273c87;
    color: white;
}

/* ====== FIX MOBILE NAVBAR ====== */

/* Toggler icon biar selalu kontras */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(15,23,42,1)' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {

    .navbar {
        padding: 1rem 1.25rem;
    }

    .navbar-grid {
        flex-wrap: wrap;
    }

    /* Logo diperkecil supaya tidak mepet toggler */
    .navbar .navbar-brand img {
        width: 170px;
        height: auto;
    }

    /* Dropdown menu butuh background sendiri, karena navbar induk transparan */
    .navbar-collapse {
        background-color: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(10px);
        margin-top: 1rem;
        padding: 1.25rem;
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }

    .navbar.scrolled .navbar-collapse {
        background-color: #ffffff;
        box-shadow: 0 15px 30px rgba(4, 29, 66, 0.12);
    }

    /* Link menu jadi list vertikal rapi & full width */
    .navbar-nav {
        flex-direction: column;
        align-items: stretch !important;
        width: 100%;
        gap: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar.scrolled .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

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

    .navbar-nav .nav-link {
        padding: 12px 0;
        color: #ffffff !important;
    }

    .navbar.scrolled .navbar-nav .nav-link {
        color: #334155 !important;
    }

    /* Tombol CTA full width di bawah menu mobile */
    .nav-action {
        width: 100%;
    }

    .nav-action .btn-cta-nav {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .navbar .navbar-brand img {
        width: 140px;
    }
}

/* Hero Section */
.hero-section {
    padding: 120px 0 0;
    background: linear-gradient(180deg, #0b122a 0%, #060e24 65%, #091c4b 100%);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #eef2ff;
    line-height: 1.05;
    margin-bottom: 20px;
}
.hero-title span {
    font-style: italic;
    font-weight: 400;
    font-family: serif;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #c8d5f8;
    margin-bottom: 40px;
}

.texttitle {
    font-size: clamp(5rem, 8.5vw, 10rem);
    font-weight: 900;
    color: #e0e7ff;
    text-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
    letter-spacing: -0.70rem;
    line-height: 0.95;
}

.btn-hero {
    background-color: #1e3a8a;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}
.btn-hero:hover {
    background-color: #273c87;
    color: white;
    transform: translateY(-2px);
}


/* Ambient Glows (Blur Background Spots) */
.ambient-cyan-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.ambient-orange-glow {
    position: absolute;
    top: 28%;
    right: 10%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(37, 99, 235, 0.12);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.7; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Geometric Grid Overlay */
.geometric-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: linear-gradient(to right, #1f2937 1px, transparent 1px),
                        linear-gradient(to bottom, #1f2937 1px, transparent 1px);
    background-size: 4rem 4rem;
    z-index: 0;
}

/* Tagline Pill */
.badge-custom {
    background-color: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #bfdbfe;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(to right, #93c5fd, #6366f1, #1e3a8a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    font-weight: 900;
}

/* Custom Colors */
.text-cyan-400 { color: #93c5fd !important; }
.text-teal-400 { color: #60a5fa !important; }
.text-orange-400 { color: #1d4ed8 !important; }
.text-slate-300 { color: #cbd5e1 !important; }

/* Button Daftar Sekarang */
.btn-primary-gradient {
    background: linear-gradient(to right, #1e40af, #3b82f6);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.25);
}

.btn-primary-gradient:hover {
    background: linear-gradient(to right, #2563eb, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
    color: white;
}

.btn-primary-gradient i {
    transition: transform 0.2s;
}

.btn-primary-gradient:hover i {
    transform: translateX(4px);
}

/* Button Booklet */
.btn-outline-custom {
    background-color: rgba(30, 41, 59, 0.8);
    border: 1px solid #334155;
    color: white;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline-custom:hover {
    background-color: #334155;
    border-color: rgba(6, 182, 212, 0.5);
    color: white;
}

/* Animations */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-slide-fade-up > * {
    opacity: 0;
    transform: translateY(40px);
    animation: slideFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-slide-fade-up > *:nth-child(1) {
    animation-delay: 0.15s;
}

.animate-slide-fade-up > *:nth-child(2) {
    animation-delay: 0.28s;
}

.animate-slide-fade-up > *:nth-child(3) {
    animation-delay: 0.42s;
}

.animate-slide-fade-up > *:nth-child(4) {
    animation-delay: 0.54s;
}

.animate-slide-fade-up > *:nth-child(5) {
    animation-delay: 0.66s;
}

@keyframes slideFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    margin-top: 0.15rem;
    color: #cbd5e1;
    animation: bounceLoop 2s infinite;
}
.hero-scroll-indicator i {
    size: 0.70rem;
    color: #93c5fd;
}
.hero-scroll-indicator span {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #cbd5e1;
}

@keyframes bounceLoop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.spin-icon {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Breakpoints */
@media (min-width: 576px) {
    .btn-custom-width { width: auto !important; }
}

/* Warna Aksesori Pendukung */
.text-orange-400 { color: #fb923c !important; }

#countdown {
    background: #f5f5f5;
    color: #0f172a !important;
    padding-top: 0;
    padding-bottom: 4rem;
}

#countdown .container {
    max-width: 1100px;
}

/* Countdown Card Utama */
.countdown-card {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
}

/* Judul Card */
.countdown-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #181818;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-align: center;
}

/* Kotak Angka */
.timer-box {
    text-align: center;
    flex: 4;
}

.timer-box h3 {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    background: linear-gradient(to bottom, #3c3c3c 40%, #232323 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Memberikan efek glow neon tipis cyan khas tema hero */
    filter: drop-shadow(0 2px 8px rgba(34, 211, 238, 0.15)); 
}

/* Khusus Detik dibuat berwarna oranye agar ada aksen dinamis yang bergerak */
.timer-box:last-child h3 {
    background: linear-gradient(to bottom, #3a1f78 40%, #030067 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(251, 146, 60, 0.2));
}

.timer-box p {
    font-size: 0.8rem;
    color: #00132e;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Garis Pembatas Vertikal */
.timer-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(13, 13, 13, 0.25), transparent);
    height: 60px;
    align-self: center;
}

/* Responsive Layar Kecil (Mobile) */
@media (max-width: 576px) {
    .countdown-card {
        padding: 24px 16px;
        max-width: 95%;
    }
    .timer-box h3 {
        font-size: 2.5rem; /* Ukuran pas di HP agar tidak patah baris */
    }
    .timer-box p {
        font-size: 0.75rem;
        margin-top: 6px;
    }
}

/* Main Event Info */
.event-info-box {
    background: rgb(255, 255, 255);
    border: 1px solid #eee;
    border-color: rgba(179, 179, 179, 0.547);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    transition: all 0.3s ease;
}
.event-info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 8, 20, 0.311);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.icon-box {
    width: 60px;
    height: 60px;
    background: #e0e7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1e40af;
    margin-bottom: 20px;
}

/* Custom Segmented Tabs styling */
.custom-tabs-container {
    display: inline-flex;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 6px;
    border-radius: 99px;
    margin: 0 auto;
    list-style: none;
}

.custom-tabs-container .nav-item {
    margin: 0;
}

.custom-tabs-container .nav-link {
    border: none;
    background: transparent;
    color: #64748b;
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-tabs-container .nav-link.active {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.15);
}

.custom-tabs-container .nav-link:hover:not(.active) {
    color: #0f172a;
    background: rgba(15, 23, 42, 0.04);
}

/* Lomba Cards - Minimalism Redefined */
.lomba-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.lomba-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 64, 175, 0.18);
    box-shadow: 0 20px 40px -10px rgba(30, 64, 175, 0.08);
}

.lomba-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Premium Icon Frame */
.lomba-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(30, 64, 175, 0.05);
    color: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lomba-card:hover .lomba-icon-wrapper {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%) !important;
    color: #ffffff !important;
    transform: scale(1.05) rotate(4deg);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.3);
}

/* Typography & Content Layout */
.lomba-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.4;
    transition: color 0.3s;
}

.lomba-card:hover .lomba-title {
    color: #1e40af;
}

.lomba-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

/* Action Link */
.lomba-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s;
    margin-top: auto;
}

.lomba-card:hover .lomba-action {
    color: #1e40af;
}

.lomba-action i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.lomba-card:hover .lomba-action i {
    transform: translateX(4px);
}

/* Custom Minimalist Level Badge */
.lomba-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #475569;
    padding: 8px 18px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.lomba-badge:hover {
    background-color: rgba(15, 23, 42, 0.07);
    color: #0f172a;
}

.lomba-juknis {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(0, 31, 104, 0.848);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.lomba-juknis i {
    color: #ffffff;
}

.lomba-juknis:hover{
    background-color: rgb(0, 30, 105);
    color: #ffffff;
}

/* Modal Customization */
.modal-dialog {
    max-width: 580px;
    margin: 1.5rem auto;
}
.modal-content {
    background: #ffffff;
    border: none;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.16);
}
.modal-header {
    border-bottom: none;
}
.modal-title {
    color: #0f172a;
    font-weight: 700;
}
.modal-body {
    max-height: calc(80vh - 200px);
    overflow-y: auto;
}
.modal-body p {
    color: #475569;
    font-weight: 400;
}

.textcontent h6 {
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-footer {
    border-top: none;
    background: transparent;
}
.modal-body::-webkit-scrollbar {
    width: 10px;
}
.modal-body::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 999px;
}
.modal-body::-webkit-scrollbar-track {
    background: rgba(148, 163, 184, 0.12);
}

/* Timeline */
.timeline-table {
    border-collapse: collapse;
    width: 100%;
}

.timeline-table thead th {
    background-color: #efecff;
    color: #060072;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: none;
    padding: 14px 16px;
}

.timeline-table tbody td {
    padding: 14px 16px;
    font-size: 0.92rem;
    color: #333;
    border-top: 1px solid #f0f0f0;
    border-bottom: none;
    vertical-align: top;
}

.timeline-table tbody tr:hover {
    background-color: #fafafa;
}

.timeline-table tbody td:first-child {
    white-space: nowrap;
    color: #555;
}

.timeline-table tbody td:nth-child(2) {
    font-weight: 500;
}

/* Gallery */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-row {
    overflow: hidden;
    width: 100%;
    margin-bottom: 16px;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-left .marquee-track {
    animation: scrollLeft 60s linear infinite;
}

.marquee-right .marquee-track {
    animation: scrollRight 60s linear infinite;
}

.gallery-img {
    width: 500px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 16px;
    flex-shrink: 0;
}

@keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (max-width: 576px) {
    .gallery-img {
        width: 200px;
        height: 140px;
    }
}

/* --- CTA SECTION IMPROVEMENTS --- */
.cta-section {
    background: radial-gradient(circle at center, #0a1226 0%, #030712 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Efek Kaca Premium untuk Konten */
.cta-glass-card {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    max-width: 850px;
    width: 100%;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

/* Gradient Text khusus Judul CTA */
.text-gradient-cta {
    background: linear-gradient(to right, #fb923c, #ff5722);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

/* Badge Kuota */
.cta-badge {
    background-color: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: #fdba74;
}

/* Animasi Titik Berkedip pada Badge */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff5722;
    border-radius: 50%;
    display: inline-block;
    animation: cta-pulse 1.5s infinite;
}

@keyframes cta-pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Tombol Pendaftaran Utama */
.btn-cta-action {
    background: linear-gradient(135deg, #ff5722 0%, #f97316 100%);
    color: #020617 !important;
    font-weight: 800;
    letter-spacing: 0.05em;
    border: none;
    box-shadow: 0 15px 30px -5px rgba(255, 87, 34, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-action:hover {
    background: linear-gradient(135deg, #e64a19 0%, #ea580c 100%);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -5px rgba(255, 87, 34, 0.45);
}

/* Efek Animasi Panah saat Tombol Didekati */
.btn-cta-action i {
    transition: transform 0.3s ease;
}
.btn-cta-action:hover i {
    transform: translateX(5px);
}

/* Latar Belakang Cahaya (Ambient Glows) */
.cta-glow-cyan {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(34, 211, 238, 0.05);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
}

.cta-glow-orange {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(251, 146, 60, 0.05);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
}

/* Penyesuaian Teks Tambahan */
.text-slate-300 { color: #cbd5e1 !important; }
.fw-black { font-weight: 900 !important; }

/* Optimasi Responsif Layar Handphone */
@media (max-width: 576px) {
    .cta-glass-card {
        padding: 32px 20px !important;
        border-radius: 24px;
    }
    .cta-glass-card h2 {
        font-size: 1.85rem;
    }
    .btn-cta-action {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::before { left: 60px; border: medium solid white; border-width: 10px 10px 10px 0; border-color: transparent white transparent transparent; }
    .left::after, .right::after { left: 21px; }
    .right { left: 0%; }
}

.hero-section h1.display-3 {
    font-size: min(5.5rem, 9vw);
    line-height: 1;
}

#hero-descriptiontext {
    max-width: 38rem !important;
}

.bg-dark-footer {
    background-color: #050914 !important;
}
.border-slate-900 {
    border-color: #111827 !important; /* Batas tipis gelap */
}
.text-slate-100 { color: #f1f5f9 !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-slate-500 { color: #64748b !important; }

.text-slate-450 { 
    color: #818cf8; /* Penyesuaian ke tone warna teks deskripsi */
    opacity: 0.85;
}
.text-slate-350 { color: #cbd5e1; }
.text-cyan-400 { color: #22d3ee !important; }
.text-cyan-500 { color: #06b6d4 !important; }

/* Hover Links */
.footer-link-btn {
    background: none;
    border: none;
    padding: 0;
    color: #94a3b8;
    transition: all 0.2s ease;
}
.footer-link-btn:hover {
    color: #22d3ee !important;
    text-decoration: underline;
}

/* Social Badge Links */
.social-badge {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #f8fafc;
    transition: all 0.2s ease;
}
.social-badge:hover {
    color: #ffffff !important;
    border-color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.05);
}