/* Styling Slider Eduspace */
#eduspaceCarousel .carousel-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background-color: #0b0e11;
}

#eduspaceCarousel .carousel-indicators [data-bs-target] {
    background-color: var(--primary-yellow);
    width: 30px;
    height: 4px;
    border-radius: 2px;
}

.bg-dark-transparent {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}

@media (max-width: 768px) {
    #eduspaceCarousel .carousel-inner img {
        height: auto !important;
        width: 100%;
        border-radius: 15px; /* Opsional: sesuaikan dengan desain rounded Anda */
    }

    #eduspaceCarousel .carousel-inner {
        border-radius: 15px;
        overflow: hidden;
    }
}

/* INFO */
/* Styling khusus untuk Info Section agar lebih clean */
#info-eduspace .fw-800 { font-weight: 800; }
#info-eduspace .text-yellow { color: #f8e41c !important; }
#info-eduspace .text-gray { color: #cbd5e0 !important; }

#info-eduspace .info-benefits-card {
    transition: all 0.4s ease;
    border-radius: 30px !important; /* Mengikuti tema rounded di gambar sebelumnya */
}

#info-eduspace .info-benefits-card h4 {
    line-height: 1.4;
    font-size: 1.25rem;
}

#info-eduspace .list-unstyled li span {
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    #info-eduspace .info-benefits-card {
        padding: 30px 20px !important;
    }
    #info-eduspace h2 {
        font-size: 1.75rem !important;
    }
}

/* Challenges Section Styling */
#challenges-eduspace .text-yellow { color: #f8e41c !important; }
#challenges-eduspace .text-gray { color: #cbd5e0 !important; }

#challenges-eduspace .challenge-list .bi {
    font-size: 1.25rem;
}

#challenges-eduspace .italic {
    font-style: italic;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    #challenges-eduspace h2 {
        font-size: 2rem !important;
    }
    #challenges-eduspace .fs-5 {
        font-size: 1.1rem !important;
    }
}

/* Why GEOVIA Section Styling */
.bg-dark-card {
    background: rgba(255, 255, 255, 0.02) !important;
}

#why-geovia .role-card {
    transition: all 0.3s ease-in-out;
}

#why-geovia .role-card:hover {
    transform: translateX(10px);
    background: rgba(248, 228, 28, 0.05) !important;
    border-color: #f8e41c !important;
}

#why-geovia .icon-glow-box {
    width: 45px;
    height: 45px;
    background: #1a1f23;
    color: #f8e41c;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(248, 228, 28, 0.2);
}

#why-geovia .x-small {
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    opacity: 0.7;
}

/* Rounded-5 Consistency */
#why-geovia .rounded-5 {
    border-radius: 2.5rem !important;
}

/* Full 14 Modules - 7 Certification Styling */
.badge-software {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(248, 228, 28, 0.1);
    color: #f8e41c;
    border: 1px solid rgba(248, 228, 28, 0.3);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-card-uniform {
    background: #161b22;
    padding-top: 55px !important; /* Memberi ruang untuk badge di atas */
    transition: all 0.4s ease;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.module-card-uniform:hover {
    transform: translateY(-8px);
    border-color: #f8e41c !important;
    background: #1a1f23;
}

.module-card-uniform:hover .badge-software {
    background-color: #f8e41c;
    color: #0b0e11;
}

/* Modern Checklist Styles */
.benefit-item {
    transition: all 0.3s ease;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.benefit-item:hover {
    padding-left: 10px;
    border-color: rgba(248, 228, 28, 0.5) !important;
}

.benefit-check-icon {
    width: 32px;
    height: 32px;
    background-color: #f8e41c;
    color: #0b0e11;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(248, 228, 28, 0.3);
}

.benefit-item h5 {
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.benefit-item p {
    opacity: 0.7;
    line-height: 1.5;
}

/* Demo Section Enhancements */
.video-container-wrapper {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-container-wrapper:hover {
    transform: scale(1.02);
}

.video-overlay-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 228, 28, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.btn-yellow {
    background-color: #f8e41c;
    color: #0b0e11;
    border: none;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    background-color: #e2d01a;
    box-shadow: 0 10px 20px rgba(248, 228, 28, 0.2);
    transform: translateY(-2px);
}

.demo-features span {
    font-size: 0.95rem;
}

/* --- Symmetrical Clean List Styles --- */

/* Left Side: Modules */
.clean-split-list li {
    color: #a3abb2;
    padding: 14px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.mod-no {
    font-family: 'Monaco', monospace;
    color: #f8e41c;
    font-size: 0.7rem;
    font-weight: 800;
    margin-right: 15px;
    background: rgba(248, 228, 28, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.clean-split-list li:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    padding-left: 8px;
}

/* Right Side: Certification */
.cert-symmetrical-list li {
    display: flex;
    align-items: center;
    padding: 10.5px 0; /* Adjusted for perfect symmetry with 14 modules */
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.cert-symmetrical-list li:last-child,
.clean-split-list li:last-child {
    border-bottom: none;
}

.cert-symmetrical-list li span {
    font-size: 0.95rem;
    line-height: 1.2;
}

.text-yellow-dim {
    color: rgba(248, 228, 28, 0.6);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cert-symmetrical-list li:hover {
    padding-left: 10px;
    background: rgba(248, 228, 28, 0.03);
}

.cert-symmetrical-list li:hover .text-white {
    color: #f8e41c !important;
}

/* WORKFLOW */
#workflow-eduspace .workflow-card {
    background: #111418 !important;
    position: relative;
    display: flex;
    flex-direction: column;
}

#workflow-eduspace .step-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.1rem;
    opacity: 0.5;
}

#workflow-eduspace .icon-wrap i {
    color: #f8e41c !important; /* Kuning Statis */
}

#workflow-eduspace .x-small {
    font-size: 0.78rem;
    line-height: 1.6;
    color: #a0aec0; /* Abu-abu terang agar mudah dibaca */
}

#workflow-eduspace .fw-800 {
    font-weight: 800;
}

/* FAQ */
#faq-eduspace .accordion-item {
    background-color: #1a1f23 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#faq-eduspace .accordion-button {
    background-color: #1a1f23 !important;
    color: #ffffff !important;
    padding: 1.2rem 1.5rem;
    box-shadow: none !important;
}

#faq-eduspace .accordion-button:not(.collapsed) {
    color: #f8e41c !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#faq-eduspace .accordion-body {
    background-color: #111418;
    color: #cbd5e0 !important; /* Abu-abu terang agar enak dibaca */
    line-height: 1.6;
}

/* Icon Panah FAQ */
#faq-eduspace .accordion-button::after {
    filter: invert(1);
}

#faq-eduspace .text-gray {
    color: #cbd5e0 !important;
}

/* Pricing Modern Layout */
/* Container & General */
#pricing-eduspace {
    background-color: #0b0e11 !important;
}

#pricing-eduspace .rounded-5 {
    border-radius: 2.5rem !important;
}

/* Card Base Style */
#pricing-eduspace .pricing-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #161b22; /* Charcoal base */
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Hover Effect Umum */
#pricing-eduspace .pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(248, 228, 28, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Middle Card (Professional Program) - Highlighted */
#pricing-eduspace .border-yellow {
    border: 2px solid #f8e41c !important;
    background-color: #0b0e11 !important; /* Lebih gelap agar kontras dengan border */
    position: relative;
    z-index: 2;
}

/* Popular Badge (Diagonal di Pojok) */
#pricing-eduspace .popular-badge-pill {
    position: absolute;
    top: -15px; /* Sedikit melayang di atas border kartu */
    left: 50%;
    transform: translateX(-50%); /* Rata tengah sempurna */
    background-color: #f8e41c; /* Kuning khas EduBlast */
    color: #0b0e11; /* Teks gelap agar kontras */
    padding: 6px 20px;
    border-radius: 50px; /* Bentuk pil sempurna */
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(248, 228, 28, 0.4); /* Efek glow tipis */
    z-index: 10;
    white-space: nowrap; /* Mencegah teks turun baris */
}

/* Penyesuaian jarak judul agar tidak tertutup badge di mobile */
@media (max-width: 991px) {
    #pricing-eduspace .pricing-card h4 {
        margin-top: 15px !important;
    }
}

/* Typography & Price */
#pricing-eduspace .text-yellow {
    color: #f8e41c !important;
}

#pricing-eduspace .price-box .display-6 {
    font-weight: 800;
    letter-spacing: -1px;
}

/* Button Styling */
#pricing-eduspace .btn-yellow {
    background-color: #f8e41c !important;
    color: #0b0e11 !important;
    border: none;
    transition: all 0.3s ease;
}

#pricing-eduspace .btn-yellow:hover {
    background-color: #ffffff !important;
    transform: scale(1.05);
}

#pricing-eduspace .btn-outline-warning {
    border: 2px solid #f8e41c !important;
    color: #f8e41c !important;
    background: transparent;
}

#pricing-eduspace .btn-outline-warning:hover {
    background-color: #f8e41c !important;
    color: #0b0e11 !important;
}

/* List Items */
#pricing-eduspace .list-unstyled li {
    font-size: 0.9rem;
    color: #a3abb2; /* Soft Gray */
}

#pricing-eduspace .list-unstyled li i {
    font-size: 1.1rem;
}

/* Custom Form Styling */
#enrollModal .bg-charcoal {
    background-color: #161b22 !important;
}

#enrollModal .form-control:focus,
#enrollModal .form-select:focus {
    background-color: #0b0e11;
    border-color: #f8e41c;
    box-shadow: 0 0 0 0.25 dashed rgba(248, 228, 28, 0.25);
    color: white;
}

#enrollModal .form-label {
    margin-bottom: 0.3rem;
    font-weight: 500;
}

/* Responsif: Mobile Adjustments */
@media (max-width: 991px) {
    #pricing-eduspace .pricing-card {
        margin-bottom: 1rem;
    }
    /* Matikan scale-up di mobile agar tidak overlap */
    #pricing-eduspace .scale-up {
        transform: scale(1) !important;
    }
}
