/* ===== INDEX PAGE STYLES ===== */
/* Color Palette: #10163f (dark navy), #ffc107 (gold), #343a40 (dark gray), white */

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Track Cards */
.track-card {
    border: 0;
    box-shadow: 0 12px 40px rgba(16, 22, 63, 0.08);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: #fff;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(16, 22, 63, 0.15);
}

.track-card .card-body {
    padding: 2rem;
}

.track-card .track-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: #10163f;
}

.track-card h4 {
    color: #10163f;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #343a40;
}

.feature-list li i {
    color: #ffc107;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Step Cards */
.step-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
}

.step-card h4 {
    color: #10163f;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #10163f;
    color: #ffc107;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Outcome Cards */
.outcome-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(16, 22, 63, 0.08);
    box-shadow: 0 4px 20px rgba(16, 22, 63, 0.06);
}

.outcome-card h5 {
    color: #10163f;
}

.outcome-card i {
    color: #ffc107;
}

/* FAQ Section */
.faq-item {
    border: 1px solid rgba(16, 22, 63, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
}

.faq-item .faq-question {
    background: #f8f9fa;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    color: #10163f;
}

.faq-item .faq-question:hover {
    background: #f0f1f2;
}

.faq-item .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #343a40;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.25rem 1.5rem;
}

.faq-item .faq-question i {
    transition: transform 0.3s ease;
    color: #ffc107;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Value Strip */
.value-strip {
    background: #fff;
    color: #10163f;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(16, 22, 63, 0.08);
}

.value-strip .value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
}

.value-strip .value-item i {
    color: #ffc107;
    font-size: 1.25rem;
}

.value-strip .value-item span {
    color: #343a40;
}

.value-strip .value-item strong {
    color: #10163f;
}

/* Program Cards */
.program-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(16, 22, 63, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(16, 22, 63, 0.05);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(16, 22, 63, 0.12);
}

.program-card h5 {
    color: #10163f;
}

/* Testimonial Cards */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(16, 22, 63, 0.08);
    height: 100%;
    border: 1px solid rgba(16, 22, 63, 0.05);
}

.testimonial-card blockquote {
    font-style: italic;
    color: #343a40;
    border-left: 4px solid #ffc107;
    padding-left: 1rem;
    margin: 0;
}

.testimonial-card .fa-quote-left {
    color: #ffc107;
}

/* Plan Cards */
.plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(16, 22, 63, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(16, 22, 63, 0.05);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(16, 22, 63, 0.12);
}

.plan-card.featured {
    border: 3px solid #ffc107;
    position: relative;
}

.plan-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #10163f;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-card h4 {
    color: #10163f;
}

.plan-card .price {
    color: #10163f;
}

/* Trust Line */
.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.trust-line span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-line span i {
    color: #ffc107;
}

/* Buttons */
.btn {
    border-radius: 12px !important;
}

.btn-primary {
    background: #10163f;
    border-color: #10163f;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #0a0e28;
    border-color: #0a0e28;
}

.btn-outline-primary {
    color: #10163f;
    border-color: #10163f;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: #10163f;
    border-color: #10163f;
    color: #fff;
}

.btn.btn-secondary {
    background: #ffc107;
    border-color: #ffc107;
    color: #10163f;
    font-weight: 600;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    background: #e0a800;
    border-color: #e0a800;
    color: #10163f;
}

.btn-warning {
    background: #ffc107;
    border-color: #ffc107;
    color: #10163f;
}

.btn-warning:hover {
    background: #e0a800;
    border-color: #e0a800;
}

/* Section Titles */
.section-title h6,
.text-secondary {
    color: #ffc107 !important;
}

.section-title h2,
.display-4 {
    color: #10163f;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 1000;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    background: #10163f;
    color: #fff;
    border-radius: 0.5rem;
}

/* Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #ffc107;
    outline-offset: 3px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 22, 63, 0.1), transparent);
    margin: 4rem 0;
}

/* Background Sections */
.bg-dark-navy {
    background: #10163f;
}

.bg-light-section {
    background: #f8f9fa;
}

/* Icon backgrounds in facilitator section */
.bg-primary {
    background: #10163f !important;
}

/* Text Colors Override */
.text-primary {
    color: #10163f !important;
}

.text-warning {
    color: #ffc107 !important;
}

/* Contact Section Icon Boxes */
.btn-icon.bg-primary {
    background: #10163f !important;
}

.btn-icon.bg-secondary {
    background: #343a40 !important;
}

.btn-icon.bg-warning {
    background: #ffc107 !important;
}

/* Back to Top Button */
.back-to-top {
    background: #10163f;
    border-color: #10163f;
}

.back-to-top:hover {
    background: #ffc107;
    border-color: #ffc107;
    color: #10163f;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .hero-cta .btn {
        margin-bottom: 0.5rem;
    }
}

/* Section-specific backgrounds */
.membership-section {
    background: #10163f;
}

.final-cta-section {
    background: #10163f;
}

/* Override headings in dark sections */
.membership-section h2,
.membership-section h5,
.membership-section h6,
.final-cta-section h2 {
    color: #fff;
}

.membership-section .text-warning {
    color: #ffc107 !important;
}

/* How It Works Section */
.how-it-works-section {
    background: #f8f9fa;
}

/* Featured Programs Section */
.featured-programs-section {
    background: #f8f9fa;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
}

/* Facilitators Section */
.facilitators-section {
    background: #fff;
}

.facilitators-section h2 {
    color: #10163f;
}