/* ============================================
   THERAPY CAROUSEL SECTION STYLES
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Roboto:wght@300;400;500&display=swap');

/* Reset & Base */
.therapy-section * {
    box-sizing: border-box;
}

.therapy-section {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: #F8F8FF;
    overflow: hidden;
}

.therapy-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.therapy-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.therapy-header h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #103664 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
}

.therapy-description {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    color: #555555 !important;
    line-height: 1.8 !important;
}

/* Main Grid Layout */
.therapy-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.therapy-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Carousel Styles */
.therapy-carousel-wrapper {
    position: relative;
}

.therapy-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 750px;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot:hover {
    background: #9ca3af;
}

.carousel-dot.active {
    background: #99CA3C;
    width: 32px;
    border-radius: 6px;
}

/* Navigation Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #103664;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    font-size: 24px;
    color: #103664;
}

.carousel-btn:hover {
    background: #99CA3C;
    border-color: #99CA3C;
    color: #ffffff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 30px rgba(153, 202, 60, 0.6);
}

.carousel-btn.prev {
    left: 25px;
}

.carousel-btn.next {
    right: 25px;
}

/* Info Box */
.therapy-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #99CA3C;
}

.therapy-info h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #103664 !important;
    margin-bottom: 30px !important;
}

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

.therapy-list li {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 400 !important;
    color: #555555 !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    padding-left: 40px;
    position: relative;
}

.therapy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #99CA3C 0%, #8bbd32 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

/* Testimonial Box */
.testimonial-box {
    background: linear-gradient(135deg, #103664 0%, #0d2a4d 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(16, 54, 100, 0.25);
    position: relative;
}

.testimonial-box::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: #99CA3C;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 400 !important;
    font-style: italic !important;
    color: #ffffff !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
}

.testimonial-author {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #99CA3C !important;
    margin-bottom: 8px !important;
}

.testimonial-author::before {
    content: '— ';
    color: #ffffff;
}

.testimonial-role {
    font-family: 'Roboto', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-style: italic !important;
}

/* ============================================
   LIFE SKILLS SECTION STYLES
   ============================================ */

.lifeskills-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.lifeskills-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.section-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    color: #103664 !important;
    text-align: left !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 400 !important;
    color: #666666 !important;
    text-align: left !important;
    margin-bottom: 50px !important;
    line-height: 1.7 !important;
    max-width: 800px;
}

/* Skills List */
.skills-list-wrapper {
    background: #f8f9fa;
    padding: 45px 50px;
    border-radius: 15px;
    margin-bottom: 50px;
    border-left: 4px solid #99CA3C;
}

.list-heading {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #103664 !important;
    margin-bottom: 25px !important;
}

.skills-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
}

.skills-list li {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1.1rem !important;
    color: #555555 !important;
    padding-left: 35px;
    position: relative;
    line-height: 1.5 !important;
}

.skills-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #99CA3C;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Image Gallery */
.images-gallery {
    margin-bottom: 50px;
    overflow: hidden;
}

.images-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #99CA3C #f0f0f0;
}

.images-scroll::-webkit-scrollbar {
    height: 8px;
}

.images-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.images-scroll::-webkit-scrollbar-thumb {
    background: #99CA3C;
    border-radius: 10px;
}

.gallery-image {
    flex: 0 0 auto;
    width: 380px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

/* Bottom CTA Section */
.bottom-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 45px 50px;
    background: linear-gradient(135deg, #103664 0%, #1a4976 100%);
    border-radius: 15px;
}

.quote-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    line-height: 1.6 !important;
    flex: 1;
    margin: 0 !important;
}

.cta-btn {
    flex-shrink: 0;
    padding: 16px 40px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    background: #99CA3C !important;
    color: #103664 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
}

.cta-btn:hover {
    background: #8bbd32 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(153, 202, 60, 0.4) !important;
    color: #103664 !important;
    text-decoration: none !important;
}

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

@media (max-width: 1024px) {
    .therapy-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .therapy-right-column {
        gap: 30px;
    }

    .therapy-carousel {
        height: 500px;
    }

    .testimonial-text,
    .testimonial-author,
    .testimonial-role {
        text-align: center;
    }

    .skills-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-image {
        width: 320px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .therapy-section,
    .lifeskills-section {
        padding: 60px 20px;
    }

    .therapy-header h2,
    .section-title {
        font-size: 2.2rem !important;
    }

    .therapy-description,
    .section-subtitle {
        font-size: 1.05rem !important;
    }

    .therapy-carousel {
        height: 400px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        border-width: 2px;
        font-size: 20px;
    }

    .carousel-btn.prev {
        left: 15px;
    }

    .carousel-btn.next {
        right: 15px;
    }

    .therapy-info,
    .skills-list-wrapper {
        padding: 35px;
    }

    .therapy-info h3,
    .list-heading {
        font-size: 1.5rem !important;
    }

    .therapy-list li,
    .skills-list li {
        font-size: 1.05rem !important;
    }

    .therapy-list li {
        padding-left: 35px;
    }

    .therapy-list li::before {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .testimonial-box {
        padding: 35px;
    }

    .testimonial-box::before {
        font-size: 5rem;
        left: 20px;
        top: -15px;
    }

    .testimonial-text {
        font-size: 1.1rem !important;
    }

    .testimonial-author {
        font-size: 1rem !important;
    }

    .testimonial-role {
        font-size: 0.9rem !important;
    }

    .gallery-image {
        width: 280px;
        height: 210px;
    }

    .bottom-section {
        flex-direction: column;
        padding: 35px 30px;
        text-align: center;
    }

    .quote-text {
        font-size: 1.2rem !important;
    }

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

@media (max-width: 480px) {
    .therapy-header h2,
    .section-title {
        font-size: 1.8rem !important;
    }

    .therapy-description,
    .section-subtitle {
        font-size: 1rem !important;
    }

    .therapy-carousel {
        height: 350px;
        border-radius: 15px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .therapy-info,
    .testimonial-box,
    .skills-list-wrapper {
        padding: 25px;
    }

    .therapy-info h3,
    .list-heading {
        font-size: 1.3rem !important;
    }

    .therapy-list li,
    .skills-list li {
        font-size: 1rem !important;
    }

    .skills-list li {
        padding-left: 30px;
    }

    .testimonial-text {
        font-size: 1rem !important;
    }

    .gallery-image {
        width: 260px;
        height: 195px;
    }

    .bottom-section {
        padding: 25px 20px;
    }

    .quote-text {
        font-size: 1.1rem !important;
    }
}
