.elementor-15191 .elementor-element.elementor-element-6c1219b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-15191 .elementor-element.elementor-element-a935a19{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-3e2d9e5 *//* Coaching Snack Page Styles - coaching-snack.css */

/* --- Hero Section --- */
.hero-section {
    background: var(--color-background) url('../images/placeholder-coaching-hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.9));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-section .hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.7;
}

.special-label {
    display: inline-block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--color-gold-light);
}

/* --- Best Selling Section --- */
.best-selling-section {
    padding: 100px 0;
    background-color: var(--color-background);
}

.best-selling-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.courses-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.course-card {
    display: flex;
    gap: 50px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(176, 141, 87, 0.1);
    border-radius: 8px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.course-image {
    flex: 1;
    max-width: 40%;
}

.course-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.course-details {
    flex: 1.5;
}

.course-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.course-details p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.course-price {
    margin-bottom: 1.5rem;
}

.regular-price {
    display: block;
    color: rgba(245, 245, 245, 0.7);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.sale-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold);
}

/* --- Additional Offerings Section --- */
.additional-offerings-section {
    padding: 100px 0;
    background-color: #f5f5f5;
    color: var(--color-text-dark);
}

.additional-offerings-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--color-gold);
}

.offerings-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.offering-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.offering-image {
    height: 200px;
    overflow: hidden;
}

.offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offering-card:hover .offering-image img {
    transform: scale(1.05);
}

.offering-details {
    padding: 25px;
}

.offering-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.offering-details p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.offering-price {
    margin-bottom: 1.5rem;
}

.offering-price .sale-price {
    color: var(--color-gold);
}

/* --- Bundle Section --- */
.bundle-section {
    padding: 100px 0;
    background-color: var(--color-background);
    position: relative;
}

.bundle-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/placeholder-sacred-geometry.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    z-index: 1;
}

.bundle-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.bundle-text {
    flex: 1;
}

.bundle-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.bundle-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.bundle-features {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.bundle-features li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    position: relative;
}

.bundle-features li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--color-gold);
    font-weight: 700;
}

.bundle-price {
    margin-bottom: 2rem;
}

.bundle-image {
    flex: 1;
    min-height: 400px;
    background-color: #222;
    background-image: url('../images/placeholder-bundle.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #f5f5f5;
    color: var(--color-text-dark);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--color-gold);
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    height: 120px;
    width: 120px;
    margin: 30px auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 0 25px 30px;
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

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

.author-name {
    font-weight: 700;
    color: var(--color-text-dark);
}

.author-title {
    font-size: 0.9rem;
    color: #777;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-background);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    margin-bottom: 20px;
    border: 1px solid rgba(176, 141, 87, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    background-color: rgba(176, 141, 87, 0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion.active .accordion-icon {
    transform: rotate(45deg);
}

/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
    color: var(--color-text-dark);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .course-card {
        flex-direction: column;
        gap: 30px;
    }
    
    .course-image {
        max-width: 100%;
    }
    
    .bundle-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .bundle-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section .hero-text {
        font-size: 1.3rem;
    }
    
    .best-selling-section,
    .additional-offerings-section,
    .bundle-section,
    .testimonials-section,
    .faq-section,
    .cta-section {
        padding: 70px 0;
    }
    
    .course-card,
    .offering-card,
    .testimonial-card {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .hero-text {
        font-size: 1.1rem;
    }
    
    .special-label {
        font-size: 1rem;
    }
    
    .course-card {
        padding: 25px;
    }
    
    .course-details h3 {
        font-size: 1.5rem;
    }
}/* End custom CSS */