/* how-to-apply.css — styles for the How to Apply page (/how-to-apply).
   Relocated from the page's inline <style> block. */

/* Page Custom Styles */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}
.status-card-pink {
    background-color: var(--accent-pink-bg) !important;
    border-left: 4px solid var(--accent-pink) !important;
}
.text-pink-emphasis {
    color: var(--accent-pink) !important;
    font-weight: 700;
}
.border-pink-divider {
    border-top: 1px solid rgba(214, 51, 132, 0.15) !important;
}
[data-bs-theme="dark"] .border-pink-divider {
    border-top: 1px solid rgba(244, 114, 182, 0.2) !important;
}
.pulse-dot-pink {
    width: 10px;
    height: 10px;
    background-color: var(--accent-pink);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(214, 51, 132, 0.5);
    animation: pulse-pink 1.8s infinite;
}
@keyframes pulse-pink {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(214, 51, 132, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(214, 51, 132, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(214, 51, 132, 0);
    }
}
[data-bs-theme="dark"] .pulse-dot-pink {
    box-shadow: 0 0 0 0 rgba(244, 114, 182, 0.5);
    animation: pulse-pink-dark 1.8s infinite;
}
@keyframes pulse-pink-dark {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(244, 114, 182, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(244, 114, 182, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(244, 114, 182, 0);
    }
}
.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Timeline/Roadmap styling */
.roadmap-timeline {
    position: relative;
    padding-left: 2.5rem;
}
.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    bottom: 10px;
    width: 3px;
    background-color: var(--card-border);
}
[data-bs-theme="dark"] .roadmap-timeline::before {
    background-color: rgba(255, 255, 255, 0.15);
}
.roadmap-step {
    position: relative;
    margin-bottom: 2rem;
}
.roadmap-step:last-child {
    margin-bottom: 0;
}
.roadmap-badge {
    position: absolute;
    left: -2.5rem;
    top: 5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
}
.roadmap-content {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}
.roadmap-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}
[data-bs-theme="dark"] .roadmap-content:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: var(--accent-deep-blue);
}
.qualification-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}
.qualification-check svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ATSA Gradient Call to Action */
.bg-atsa-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
}
[data-bs-theme="dark"] .bg-atsa-cta {
    background: linear-gradient(135deg, #090d16 0%, #172554 100%);
    color: #ffffff;
}
.cta-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-card:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25) !important;
}
.cta-airplane-col {
    background-color: rgba(255, 255, 255, 0.1);
}
