/* ========================================
   COACHING PAGE - VIBRANT & INSPIRING STYLES
   ======================================== */

/* Hero Section */
.coaching-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f051d 0%, #1a0a2e 30%, #2d1b4e 60%, #4a1942 100%);
}

.coaching-hero .hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 60%);
}

.coaching-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.coaching-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f9a8d4 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coaching-hero .hero-subtext {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Difference Section */
.difference-section {
    background: linear-gradient(180deg, #1a0a2e 0%, #0f051d 100%);
    padding: 6rem 0;
}

.difference-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.difference-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3),
                0 0 100px rgba(251, 191, 36, 0.15);
    border: 3px solid rgba(251, 191, 36, 0.4);
}

.difference-text h2 {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.difference-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

.difference-highlight {
    font-size: 1.25rem !important;
    color: #f9a8d4 !important;
    font-weight: 600;
    font-style: italic;
    margin: 1.5rem 0 !important;
    padding-left: 1.5rem;
    border-left: 3px solid #ec4899;
}

/* Who Section */
.who-section {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a1942 50%, #2d1b4e 100%);
    padding: 5rem 0;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.who-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.who-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.15);
}

.who-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.who-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Together Section */
.together-section {
    background: linear-gradient(180deg, #0f051d 0%, #1a0a2e 100%);
    padding: 6rem 0;
}

.together-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.together-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.together-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #fbbf24);
}

.together-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.together-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(251, 191, 36, 0.3);
    margin-bottom: 0.5rem;
}

.together-card h3 {
    font-size: 1.4rem;
    color: #f9a8d4;
    margin-bottom: 1rem;
}

.together-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Programs Section */
.programs-section {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
    padding: 6rem 0;
}

.programs-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.program-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.2);
}

.program-card.featured {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid rgba(236, 72, 153, 0.5);
    transform: scale(1.05);
}

.program-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.program-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.program-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.3rem;
}

.program-duration {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.program-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.program-features li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
}

.cta-button-outline {
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f9a8d4;
    color: #f9a8d4;
}

/* Approach Section */
.approach-section {
    background: linear-gradient(180deg, #2d1b4e 0%, #1a0a2e 100%);
    padding: 6rem 0;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(236, 72, 153, 0.4),
                0 0 120px rgba(139, 92, 246, 0.2);
    border: 4px solid rgba(251, 191, 36, 0.5);
}

.approach-text h2 {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

.approach-highlight {
    font-size: 1.2rem !important;
    color: #f9a8d4 !important;
    font-weight: 600;
    font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #0f051d 0%, #1a0a2e 50%, #2d1b4e 100%);
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.quote-mark {
    font-size: 5rem;
    color: rgba(251, 191, 36, 0.3);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-name {
    font-size: 1rem;
    color: #f9a8d4;
    font-weight: 600;
    text-align: right;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, #1a0a2e 0%, #0f051d 100%);
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(236, 72, 153, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #f9a8d4;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #4a1942 0%, #2d1b4e 50%, #1a0a2e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.8rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.4);
}

.final-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.cta-highlight {
    font-size: 1.4rem !important;
    color: #f9a8d4 !important;
    font-weight: 600;
    font-style: italic;
    margin: 1.5rem 0 !important;
}

.cta-button-final {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #fbbf24 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 2rem 0 1rem;
}

.cta-button-final:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* Shared Styles */
.section-title-glow {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.cta-button-glow {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #fbbf24 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.5);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    .program-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .together-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .coaching-hero h1 {
        font-size: 2.4rem;
    }
    
    .coaching-hero .hero-subtext {
        font-size: 1.05rem;
    }
    
    .difference-content,
    .approach-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .difference-image,
    .approach-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .difference-image img,
    .approach-image img {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .difference-highlight {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title-glow {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .coaching-hero {
        min-height: 65vh;
    }
    
    .coaching-hero h1 {
        font-size: 1.9rem;
    }
    
    .difference-text h2,
    .approach-text h2 {
        font-size: 1.8rem;
    }
    
    .program-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-button-glow,
    .cta-button-final {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
