/* THRIVE Coaching Page Styles */

.coaching-hero {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1) 0%, rgba(255, 255, 0, 0.05) 100%);
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 0, 0.2);
}

.program-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.program-card:hover {
    background: rgba(255, 255, 0, 0.05);
    border-color: rgba(255, 255, 0, 0.3);
    transform: translateY(-5px);
}

.program-card.featured {
    border-color: rgba(255, 255, 0, 0.6);
    background: rgba(255, 255, 0, 0.1);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
}

.program-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.program-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.program-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

.program-features li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.program-investment {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.investment-price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.investment-period {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonial-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem 0;
    text-align: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: bold;
}

.application-process {
    background: rgba(255, 255, 0, 0.05);
    border: 1px solid rgba(255, 255, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .program-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-card {
        padding: 2rem;
    }
    
    .investment-price {
        font-size: 2rem;
    }
}