/* ===================================
   SINGLE SESSIONS PAGE STYLES
   =================================== */

/* Hero Section */
.sessions-hero {
    padding: 6rem 0 5rem 0;
    background: linear-gradient(180deg, #FAF9F8 0%, #FFFFFF 100%);
}

.sessions-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sessions-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.sessions-hero .hero-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.sessions-hero .hero-lead strong {
    color: #CA623F;
    font-weight: 700;
}

/* Session Packages */
.session-packages {
    padding: 6rem 0;
    background: #FFFFFF;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.package-card {
    background: #FFFFFF;
    border: 2px solid #eae5e0;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: #CA623F;
}

.package-card.featured {
    border: 3px solid #CA623F;
    transform: scale(1.05);
}

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

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #CA623F;
    color: #FAF9F8;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eae5e0;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.package-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.package-price .price-symbol {
    font-size: 1.5rem;
    color: #CA623F;
    font-weight: 700;
    margin-top: 0.5rem;
}

.package-price .price-number {
    font-size: 4rem;
    font-weight: 900;
    color: #CA623F;
    line-height: 1;
}

.package-subtitle {
    font-size: 1rem;
    color: #4a4a4a;
    font-style: italic;
}

.package-description {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.package-description strong {
    color: #1a1a1a;
    font-weight: 700;
}

.package-includes {
    margin-bottom: 2rem;
}

.package-includes h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.package-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-includes li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.package-includes li i {
    color: #CA623F;
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.package-best-for {
    background: #FAF9F8;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.package-best-for strong {
    color: #1a1a1a;
    font-weight: 700;
}

.package-cta {
    margin-top: auto;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: #FAF9F8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-card::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: #CA623F;
    font-weight: 700;
}

.step-card:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #CA623F 0%, #b85536 100%);
    color: #FAF9F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 16px rgba(202, 98, 63, 0.3);
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Topics Section */
.topics-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.topic-card {
    background: #FAF9F8;
    border: 2px solid #eae5e0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-4px);
    border-color: #CA623F;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: #CA623F;
    color: #FAF9F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
}

.topic-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.topic-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0;
}

/* Fit Section */
.fit-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #273E47 0%, #232F25 100%);
    color: #FAF9F8;
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.fit-column h2 {
    color: #FAF9F8;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fit-column h2 i {
    color: #27ae60;
}

.fit-column h2 i.fa-times-circle {
    color: #dc3545;
}

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

.fit-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(250, 249, 248, 0.1);
}

.fit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 900;
    font-size: 1.25rem;
}

.fit-list.not-for li::before {
    content: '✗';
    color: #dc3545;
}

.fit-list li em {
    color: #CA623F;
    font-style: italic;
    font-weight: 600;
}

.fit-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(202, 98, 63, 0.15);
    border-left: 4px solid #CA623F;
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #FAF9F8 !important;
    font-weight: 600 !important;
}

/* Testimonials */
.sessions-testimonials {
    padding: 6rem 0;
    background: #FAF9F8;
}

.testimonials-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card-single {
    background: #FFFFFF;
    border: 2px solid #eae5e0;
    border-radius: 16px;
    padding: 2.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.05rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.95rem;
}

/* FAQ */
.sessions-faq {
    padding: 6rem 0;
    background: #FFFFFF;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0 auto;
}

.faq-item {
    border-bottom: 2px solid #eae5e0;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #CA623F;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Final CTA */
.sessions-final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #CA623F 0%, #b85536 100%);
    color: #FAF9F8;
}

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

.final-cta-content h2 {
    color: #FAF9F8;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta-content .lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: rgba(250, 249, 248, 0.95);
}

.final-cta-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: rgba(250, 249, 248, 0.9);
}

.cta-question {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 2rem 0 2.5rem 0 !important;
    color: #FAF9F8 !important;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
}

.cta-buttons .btn {
    background: #273E47;
    color: #FAF9F8;
    border-color: #273E47;
}

.cta-buttons .btn:hover {
    background: #232F25;
    border-color: #232F25;
    transform: translateY(-2px);
}

.contact-note {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(250, 249, 248, 0.9) !important;
}

.contact-note a {
    color: #FAF9F8;
    text-decoration: underline;
    font-weight: 700;
}

.contact-note a:hover {
    color: #FFFFFF;
}

/* About Kayla */
.about-kayla {
    padding: 6rem 0;
    background: #FAF9F8;
}

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

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.about-content strong {
    color: #1a1a1a;
    font-weight: 700;
}

.about-cta {
    font-size: 1.25rem !important;
    margin: 2.5rem 0 2rem 0 !important;
    color: #CA623F !important;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .step-card::after {
        display: none;
    }
    
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .fit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-grid-three {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-buttons {
        flex-direction: column;
    }
}

@media (max-width: 568px) {
    .sessions-hero h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        max-width: 100%;
    }
    
    .package-price .price-number {
        font-size: 3rem;
    }
}
