/**
 * Plans Page Styles
 * Template: Plans (Reimagined)
 * Description: Simplified, conversion-focused page for Summer Camp & Free Percussion Course
 * Extracted from inline styles: December 2025
 */

/* ==================== MINIMALIST PLANS PAGE ==================== */

.plans-page {
    font-family: 'Lato', sans-serif;
    color: #2B2823;
    background: #fff;
}

.plans-page h1,
.plans-page h2,
.plans-page h3,
.plans-page h4,
.plans-page h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ===== HERO SECTION ===== */
.hero-plans {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-plans-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(43, 40, 35, 0.90) 0%, rgba(43, 40, 35, 0.65) 60%, rgba(43, 40, 35, 0.25) 100%);
    z-index: 1;
}

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

.hero-content-plans {
    max-width: 700px;
}

.hero-plans h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-plans .highlight-gold {
    color: #d8a81b;
}

.hero-plans p {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-plans .cta-group {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-gold-primary {
    background-color: #d8a81b;
    color: #2B2823;
    padding: 1.3rem 3.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.btn-gold-primary:hover {
    background-color: #b7780d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(216, 168, 27, 0.5);
    text-decoration: none;
}

.btn-outline-light {
    background-color: transparent;
    color: #fff;
    padding: 1.3rem 3.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: 3px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #2B2823;
    border-color: #fff;
    text-decoration: none;
}

/* ===== CONTENT SECTIONS ===== */
.section-white {
    padding: 100px 0;
    background-color: #fff;
}

.section-light-gray {
    padding: 100px 0;
    background-color: #F7F7F7;
}

.section-dark {
    padding: 100px 0;
    background-color: #2B2823;
    color: #fff;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #2B2823;
}

.section-dark .section-title {
    color: #fff;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: #d2ab68;
}

/* ===== VALUE PROPOSITIONS GRID ===== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(216, 168, 27, 0.25);
}

.value-card .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2B2823;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===== FREE COURSE HIGHLIGHT ===== */
.free-course-banner {
    background: linear-gradient(135deg, #d8a81b 0%, #b7780d 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.free-course-banner::before {
    content: '\1F3B5';
    font-size: 15rem;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%) rotate(-15deg);
    opacity: 0.06;
}

.free-course-banner::after {
    content: '\1F941';
    font-size: 15rem;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(15deg);
    opacity: 0.06;
}

.free-course-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.free-course-banner h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.free-course-banner p {
    font-size: 1.3rem;
    color: #2B2823;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.btn-dark-large {
    background-color: #2B2823;
    color: #fff;
    padding: 1.4rem 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-dark-large:hover {
    background-color: #1a1715;
    color: #d8a81b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(43, 40, 35, 0.4);
    text-decoration: none;
}

/* ===== SUMMER CAMP SECTION ===== */
.camp-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.camp-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.camp-info h3 {
    font-size: 2.5rem;
    color: #2B2823;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.camp-info p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.camp-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.camp-highlights li {
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

.camp-highlights li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #d8a81b;
    font-weight: 900;
    font-size: 1.4rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    max-width: 900px;
    margin: 4rem auto;
}

/* Swiper Container Positioning Fix */
.swiper-container.teachers {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

/* Swiper Navigation Buttons - Positioned within testimonials section */
.section-dark .swiper-button-next,
.section-dark .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(216, 168, 27, 0.9);
    border-radius: 50%;
    color: #2B2823;
    z-index: 10;
    transition: all 0.3s ease;
}

.section-dark .swiper-button-next:hover,
.section-dark .swiper-button-prev:hover {
    background-color: #d8a81b;
    transform: translateY(-50%) scale(1.1);
}

.section-dark .swiper-button-next::after,
.section-dark .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 900;
}

.section-dark .swiper-button-next {
    right: 0;
}

.section-dark .swiper-button-prev {
    left: 0;
}

/* Swiper Pagination */
.section-dark .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 2rem;
}

.section-dark .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(216, 168, 27, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.section-dark .swiper-pagination-bullet-active {
    background-color: #d8a81b;
    transform: scale(1.3);
}

.testimonial-card {
    background: #fff;
    padding: 3.5rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 5px solid #d8a81b;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2B2823;
    margin-bottom: 0.3rem;
}

.testimonial-role {
    font-size: 1rem;
    color: #d8a81b;
    font-style: italic;
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .swiper-container.teachers {
        padding: 0 50px;
    }

    .section-dark .swiper-button-next,
    .section-dark .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .section-dark .swiper-button-next::after,
    .section-dark .swiper-button-prev::after {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .swiper-container.teachers {
        padding: 0 40px;
    }

    .section-dark .swiper-button-next,
    .section-dark .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .section-dark .swiper-button-next::after,
    .section-dark .swiper-button-prev::after {
        font-size: 14px;
    }
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 1.8rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-question:hover {
    background: #F7F7F7;
}

.faq-question span.question {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2B2823;
    flex: 1;
}

.accordion-button-icon {
    color: #d8a81b;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer {
    padding: 0 2.5rem 2rem;
}

.faq-answer span {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===== BLOG CTA ===== */
.blog-cta {
    background: linear-gradient(135deg, #2B2823 0%, #3d3832 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.blog-cta h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-cta p {
    color: #d2ab68;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.btn-outline-gold {
    background-color: transparent;
    color: #d8a81b;
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid #d8a81b;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-outline-gold:hover {
    background-color: #d8a81b;
    color: #2B2823;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-plans {
        min-height: 75vh;
        padding: 80px 0 60px;
    }

    .hero-plans .cta-group {
        flex-direction: column;
    }

    .btn-gold-primary,
    .btn-outline-light {
        width: 100%;
        text-align: center;
    }

    .camp-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-white,
    .section-light-gray,
    .section-dark {
        padding: 60px 0;
    }

    .value-grid {
        gap: 2rem;
    }
}

.footer {
    margin-top: 0;
}
