/* Nafanesia Academy - Extended Styles */

/* Fix canvas z-index to show above body background */
#cursorCanvas {
    z-index: 1 !important;
}

/* Keep navbar fixed but above canvas */
.navbar {
    z-index: 1000 !important;
}

/* Ensure all content is above canvas */
.hero-content,
.section-title,
.mentor-grid,
.program-showcase,
.waitlist-card,
.pricing-card,
.faq-container {
    position: relative;
    z-index: 2;
}

/* Footer - transparent with subtle overlay for readability */
.footer {
    position: relative;
    z-index: 2;
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Override section backgrounds for particle visibility */
.academy-hero,
.academy-hero.hero,
.mentor-section,
.waitlist-section,
#program {
    background: transparent !important;
}

/* Hero Academy Specific */
.academy-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 181, 34, 0.15);
    border: 1px solid rgba(248, 181, 34, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 1rem;
}

.batch-highlight {
    color: var(--secondary);
    font-weight: 600;
}

/* Mentor Section */
.mentor-section {
    position: relative;
}

/* Custom Academy Icon Animations */

/* 1. Praktisi Industri - Briefcase with verified badge */
.icon-practitioner {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.briefcase {
    width: 50px;
    height: 35px;
    border: 3px solid var(--primary);
    border-radius: 6px;
    position: relative;
    animation: briefcaseFloat 3s ease-in-out infinite;
}

.briefcase::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    border: 3px solid var(--primary);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
}

.briefcase::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 2px;
    background: var(--primary);
}

.verified-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 2s ease-in-out infinite;
}

.verified-badge::after {
    content: '✓';
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

@keyframes briefcaseFloat {

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

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

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(248, 181, 34, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px 5px rgba(248, 181, 34, 0.2);
    }
}

/* 2. Bimbingan Sampai Paham - Lightbulb with glow */
.icon-guidance {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbulb {
    width: 35px;
    height: 45px;
    position: relative;
}

.bulb-glass {
    width: 35px;
    height: 35px;
    border: 3px solid var(--primary);
    border-radius: 50% 50% 45% 45%;
    position: relative;
    animation: bulbGlow 2s ease-in-out infinite;
}

.bulb-glass::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: innerGlow 2s ease-in-out infinite;
}

.bulb-base {
    width: 20px;
    height: 10px;
    margin: 0 auto;
    border: 2px solid var(--primary);
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.light-rays {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
}

.ray {
    position: absolute;
    width: 2px;
    height: 8px;
    background: var(--secondary);
    opacity: 0;
    animation: rayPulse 2s ease-in-out infinite;
}

.ray:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.ray:nth-child(2) {
    top: 8px;
    left: 15%;
    transform: rotate(-45deg);
    animation-delay: 0.2s;
}

.ray:nth-child(3) {
    top: 8px;
    right: 15%;
    transform: rotate(45deg);
    animation-delay: 0.4s;
}

@keyframes bulbGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(248, 181, 34, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(248, 181, 34, 0.6);
    }
}

@keyframes innerGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes rayPulse {

    0%,
    100% {
        opacity: 0;
        height: 5px;
    }

    50% {
        opacity: 1;
        height: 10px;
    }
}

/* 3. Project-Based Learning - Code blocks stacking */
.icon-project {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-stack {
    position: relative;
    width: 60px;
    height: 50px;
}

.code-block {
    position: absolute;
    left: 0;
    width: 100%;
    height: 14px;
    background: rgba(248, 181, 34, 0.2);
    border: 2px solid var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.code-block::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 2px;
    margin-right: 4px;
}

.code-block::after {
    content: '';
    width: 20px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.code-block:nth-child(1) {
    bottom: 0;
    animation: stackUp 3s ease-in-out infinite;
}

.code-block:nth-child(2) {
    bottom: 18px;
    animation: stackUp 3s ease-in-out infinite 0.3s;
}

.code-block:nth-child(3) {
    bottom: 36px;
    animation: stackUp 3s ease-in-out infinite 0.6s;
}

.build-indicator {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: buildSpin 2s linear infinite;
}

.build-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 2px solid transparent;
    border-top-color: var(--secondary);
    border-radius: 50%;
}

@keyframes stackUp {

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

    50% {
        transform: translateY(-3px);
        opacity: 0.8;
    }
}

@keyframes buildSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mentor-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-5px);
}

.mentor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
}

.mentor-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.mentor-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Program Card */
.program-showcase {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.program-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.program-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    background: rgba(248, 181, 34, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(248, 181, 34, 0.3);
    overflow: hidden;
}

.program-icon img {
    width: 60%;
    height: auto;
}

.program-showcase h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.program-showcase .batch-tag {
    background: var(--primary);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.program-features {
    text-align: left;
    margin: 2rem 0;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.program-features li i {
    color: var(--primary);
    margin-top: 4px;
}

/* Waitlist Section */
.waitlist-section {
    position: relative;
}

.waitlist-container {
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-card {
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #10B981, #059669);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.5);
    }
}

.waitlist-form {
    margin-top: 2rem;
}

.waitlist-form .form-group {
    margin-bottom: 1.5rem;
}

.waitlist-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.waitlist-form input,
.waitlist-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(248, 181, 34, 0.1);
}

.waitlist-form textarea {
    resize: vertical;
    min-height: 100px;
}

.waitlist-form .input-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.btn-waitlist {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.waitlist-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.waitlist-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.waitlist-benefits i {
    color: var(--primary);
}

/* Pricing Section */
.pricing-section {
    background: var(--background);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    position: relative;
    border: 2px solid var(--primary);
}

.pricing-card::before {
    content: 'EARLY BIRD';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #000;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.price-display {
    margin-bottom: 2rem;
}

.price-original {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Only the "Rp" prefix should be smaller */
.price-current>span:first-child {
    font-size: 1.5rem;
    font-weight: 400;
}

.savings-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.waitlist-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    color: #10B981;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    animation: pulse-glow 2s infinite;
}

.pricing-features {
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.pricing-features li i {
    color: var(--primary);
    width: 20px;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Academy Footer */
.academy-footer .tagline {
    font-size: 1rem;
    color: var(--primary);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.success-modal.active {
    display: flex;
}

.success-content {
    background: var(--surface);
    border: 1px solid rgba(248, 181, 34, 0.3);
    border-radius: var(--radius-md);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    margin: 1rem;
    animation: modalPop 0.3s ease;
}

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

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {

    .program-showcase,
    .waitlist-card,
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price-current {
        font-size: 2.5rem;
    }

    .mentor-grid {
        grid-template-columns: 1fr;
    }

    .waitlist-benefits {
        flex-direction: column;
    }
}

/* ===== Curriculum Section Styles ===== */

/* Program Showcase Enhancements */
.program-tagline {
    font-size: 1.25rem;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.program-period,
.program-mentor {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.program-period i,
.program-mentor i {
    color: var(--primary);
    margin-right: 8px;
}

/* Curriculum Section Card */
.curriculum-section {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary);
}

.curriculum-section.preclass {
    border-left-color: #10B981;
}

.curriculum-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.curriculum-header>i {
    font-size: 1.5rem;
    color: var(--primary);
}

.curriculum-header h3 {
    font-size: 1.25rem;
    margin: 0;
    color: #fff;
}

.curriculum-header.collapsible {
    cursor: pointer;
    justify-content: space-between;
}

.curriculum-header .header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.curriculum-header.collapsible.active .toggle-icon {
    transform: rotate(180deg);
}

/* Week Badge */
.week-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.week-badge.preclass-badge {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
}

/* Curriculum Description */
.curriculum-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0.75rem 0 0;
    padding-left: 0;
}

.curriculum-goal {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0.75rem 0 0;
}

.curriculum-goal i {
    color: var(--secondary);
    margin-right: 6px;
}

/* Collapsible Content */
.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.collapsible-content.active {
    max-height: 2000px;
}

/* Module Styling */
.module {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.module h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.module h4 i {
    margin-right: 8px;
}

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

.module ul li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 6px 0 6px 20px;
    position: relative;
}

.module ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Curriculum Topics */
.curriculum-topics {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.curriculum-topics>li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.curriculum-topics>li>i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.sub-topics {
    margin-top: 8px;
    padding-left: 20px;
    list-style: disc;
}

.sub-topics li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 4px 0;
}

/* About Program */
.about-program p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-program strong {
    color: var(--primary);
}

/* Target Audience Grid */
.target-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.target-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.target-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

/* ===== Custom Animated Icons for Target Audience ===== */

/* Base icon container styles */
.icon-junior,
.icon-switcher,
.icon-student {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 1. Junior Developer - Tangled Code with Question Mark */
.code-mess {
    width: 40px;
    height: 35px;
    position: relative;
}

.mess-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.7;
}

.mess-line:nth-child(1) {
    top: 0;
    width: 85%;
    animation: messWiggle 2s ease-in-out infinite;
}

.mess-line:nth-child(2) {
    top: 12px;
    width: 100%;
    animation: messWiggle 2s ease-in-out infinite 0.3s;
}

.mess-line:nth-child(3) {
    top: 24px;
    width: 60%;
    animation: messWiggle 2s ease-in-out infinite 0.6s;
}

@keyframes messWiggle {

    0%,
    100% {
        transform: translateX(0) skewX(0deg);
    }

    25% {
        transform: translateX(3px) skewX(2deg);
    }

    75% {
        transform: translateX(-3px) skewX(-2deg);
    }
}

.question-mark {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--secondary), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    animation: questionPulse 1.5s ease-in-out infinite;
}

@keyframes questionPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(248, 181, 34, 0.4);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 12px 4px rgba(248, 181, 34, 0.2);
    }
}

/* 2. Career Switcher - Mobile Phone with Arrow */
.phone-device {
    width: 28px;
    height: 45px;
    border: 3px solid var(--primary);
    border-radius: 6px;
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

.phone-screen {
    position: absolute;
    top: 8px;
    left: 3px;
    right: 3px;
    bottom: 8px;
    background: rgba(248, 181, 34, 0.3);
    border-radius: 2px;
    animation: screenGlow 2s ease-in-out infinite;
}

@keyframes screenGlow {

    0%,
    100% {
        background: rgba(248, 181, 34, 0.2);
    }

    50% {
        background: rgba(248, 181, 34, 0.5);
    }
}

.phone-notch {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

@keyframes phoneFloat {

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

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

.switch-arrow {
    position: absolute;
    right: -5px;
    width: 20px;
    height: 20px;
    animation: arrowPulse 2s ease-in-out infinite;
}

.switch-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.switch-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-right: 3px solid var(--secondary);
    border-top: 3px solid var(--secondary);
    transform: translateY(-50%) rotate(45deg);
}

@keyframes arrowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

/* 3. Mahasiswa IT - Portfolio Document with Star */
.portfolio-doc {
    width: 35px;
    height: 45px;
    border: 3px solid var(--primary);
    border-radius: 4px;
    position: relative;
    padding: 8px 5px;
    animation: docFloat 3s ease-in-out infinite;
}

.doc-line {
    width: 100%;
    height: 3px;
    background: rgba(248, 181, 34, 0.5);
    border-radius: 2px;
    margin-bottom: 5px;
    animation: docType 2s ease-in-out infinite;
}

.doc-line:nth-child(1) {
    width: 100%;
    animation-delay: 0s;
}

.doc-line:nth-child(2) {
    width: 80%;
    animation-delay: 0.2s;
}

.doc-line:nth-child(3) {
    width: 60%;
    animation-delay: 0.4s;
}

@keyframes docType {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes docFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(2deg);
    }
}

.star-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    animation: starShine 2s ease-in-out infinite;
}

.star-badge::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
}

@keyframes starShine {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        transform: scale(1.1) rotate(15deg);
        box-shadow: 0 0 15px 5px rgba(16, 185, 129, 0.2);
    }
}

.target-card h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.target-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Tools Grid */
.tools-section {
    border-left-color: var(--secondary);
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: background 0.3s ease;
}

.tool-item:hover {
    background: rgba(248, 181, 34, 0.1);
}

.tool-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Responsive for Curriculum */
@media (max-width: 768px) {
    .curriculum-section {
        padding: 1rem 1.25rem;
    }

    .curriculum-header h3 {
        font-size: 1rem;
    }

    .week-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .target-audience-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        flex-direction: column;
    }

    .curriculum-header .header-left {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* ==========================================
   Payment Form Styles
   ========================================== */

.payment-form {
    margin-top: 2rem;
    text-align: left;
}

.payment-form .form-group {
    margin-bottom: 1.25rem;
}

.payment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
    font-size: 0.95rem;
}

.payment-form label .required {
    color: var(--primary);
}

.payment-form label .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.85rem;
}

.payment-form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.payment-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(248, 181, 34, 0.15);
}

.payment-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.payment-form input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Promo Code Group */
.promo-group {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.promo-input-wrapper {
    display: flex;
    gap: 0.75rem;
}

.promo-input-wrapper input {
    flex: 1;
    text-transform: uppercase;
}

.btn-validate {
    padding: 14px 24px;
    background: rgba(248, 181, 34, 0.15);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-validate:hover {
    background: rgba(248, 181, 34, 0.25);
}

.btn-validate:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-validate.validated {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10B981;
    color: #10B981;
}

/* Promo Status */
.promo-status {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.promo-status.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.promo-status.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.promo-status.loading {
    background: rgba(248, 181, 34, 0.15);
    border: 1px solid rgba(248, 181, 34, 0.3);
    color: var(--primary);
}

/* Form Error */
.form-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Payment Note */
.payment-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-note i {
    color: #10B981;
}

/* Discount Badge Inline */
.discount-badge-inline {
    display: inline-block;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    color: #10B981;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

/* Pricing Divider */
.pricing-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    gap: 1rem;
}

.pricing-divider::before,
.pricing-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.pricing-divider span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Waitlist Alt Button */
.btn-waitlist-alt {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.waitlist-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* Responsive for Payment Form */
@media (max-width: 480px) {
    .promo-input-wrapper {
        flex-direction: column;
    }

    .btn-validate {
        width: 100%;
    }

    .price-current {
        font-size: 2.75rem;
    }
}

/* Quota Full Message */
.quota-full-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    animation: fadeInShake 0.5s ease;
}

.quota-full-message i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

@keyframes fadeInShake {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    25% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(-3px);
    }
    75% {
        transform: translateX(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Disabled Button State */
.btn-disabled,
.btn.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--text-muted) !important;
    background-image: none !important;
    pointer-events: none;
}

.btn-disabled:hover,
.btn.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Disabled Form Inputs */
.payment-form input:disabled,
.payment-form textarea:disabled,
.payment-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
}