/* Coaching Page Styles */

/* Hero Section */
.coaching-hero {
    background: linear-gradient(135deg, #000000, #9E1A1A 100%);
    color: white;
    padding: 200px 20px 20px;
    text-align: center;
}

.coaching-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.coaching-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coaching-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.coaching-hero .hero-description {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Subscription Plans Section */
.subscription-plans {
    padding: 80px 20px;
    background: #f8f9fa;
}

.subscription-plans .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subscription-plans .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.subscription-plans-featured .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
.subscription-plans .section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Plan Card with Flip Effect */
.plan-card {
    perspective: 1000px;
    height: 500px;
    position: relative;
}

.plan-card.featured {
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #9E1A1A;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.plan-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.plan-card:hover .plan-card-inner {
    transform: rotateY(180deg);
}

.plan-card-front,
.plan-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
}

.plan-card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.plan-card.featured .plan-card-front {
    background: linear-gradient(135deg, #9E1A1A 0%, #000000 100%);
    color: white;
}

.plan-card-back {
    transform: rotateY(180deg);
    background: white;
    justify-content: flex-start;
}

.plan-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #9E1A1A;
}

.plan-card.featured .plan-icon {
    color: white;
}

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
}

.plan-price .amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.plan-price .period {
    font-size: 1.2rem;
    color: #666;
    align-self: flex-end;
    margin-bottom: 12px;
    margin-left: 5px;
}

.plan-card.featured .plan-price .period {
    color: rgba(255, 255, 255, 0.9);
}

.plan-tagline {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.plan-card.featured .plan-tagline {
    color: rgba(255, 255, 255, 0.95);
}

.plan-cta .hover-hint {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #9E1A1A;
    font-weight: 600;
}

.plan-card.featured .plan-cta .hover-hint {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    width: 100%;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1rem;
}

.btn-plan {
    margin-top: auto;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
}

/* Coaching Offerings Section */
.coaching-offerings {
    padding: 80px 20px;
    background: white;
}

.coaching-offerings .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.coaching-offerings .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.coaching-offerings .section-subtitle {
    font-size: 1.1rem;
    color: #ffffff}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.offering-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #9E1A1A;
}

.offering-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9E1A1A 0%, #000000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
}

.offering-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.offering-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.offering-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offering-highlights li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.offering-highlights li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

/* CTA Section */
.coaching-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000000 0%, #9E1A1A 100%);
    color: white;
}

.coaching-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coaching-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.coaching-cta .cta-text {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.coaching-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coaching-hero .hero-title {
        font-size: 2rem;
    }

    .coaching-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .subscription-plans .section-title,
    .coaching-offerings .section-title {
        font-size: 2rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card {
        height: 480px;
    }

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

    .coaching-cta .cta-title {
        font-size: 1rem;
        max-width: 500px;
    }

    .coaching-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}
