/* Journey Timeline - Enhanced */
.full-journey {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.journey-step {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.journey-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6600, #ff9900);
}

.journey-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.journey-step .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: filter 0.3s ease;
}

.journey-step:hover .icon {
    filter: grayscale(0);
}

.journey-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.journey-step p {
    color: #666;
    line-height: 1.6;
}

/* Enhanced Slideshow */
.activity-slideshow {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.slideshow-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: white;
}

.slide.active {
    display: grid;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.slide-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.slide-text .highlight-text {
    color: #ff6600;
}

.slide-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}

.slide-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.feature-item i {
    color: #ff6600;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6600, #ff9900);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.slide-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    color: white;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: rgba(255, 102, 0, 0.8);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/*Responsive Styles*/
@media(max-width:768px) {
    .activity-slideshow {
        padding: 60px 10px;
    }

    .slideshow-wrapper {
        padding: 0 20px;
    }

    .slide {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        padding: 20px 0;
    }

    .slide img {
        height: 250px;
        order: -1;
        /* Image appears first on mobile */
        margin-bottom: 20px;
    }

    .slide-text {
        padding: 0;
    }

    .slide-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .slide-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .slide-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 0;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .slide-cta {
        display: inline-flex;
        padding: 12px 20px;
        font-size: 0.9rem;
        margin-top: 15px;
    }

    .nav-arrow {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        border-radius: 50%;
        background: rgba(255, 102, 0, 0.9);
        backdrop-filter: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .nav-arrow:hover {
        background: rgba(255, 102, 0, 1);
        transform: scale(1.05);
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    /* Mobile Slide Indicators */
    .slide-indicators {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator.active {
        background: #ff6600;
        transform: scale(1.2);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .slide-text h2 {
        font-size: 1.7rem;
    }

    .slide-text p {
        font-size: 0.95rem;
    }

    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .slide img {
        height: 200px;
    }

    .slideshow-wrapper {
        padding: 0 10px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #ff6600;
    font-weight: bold;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6600, #ff9900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Enhanced Footer */
footer {
    background-color: black;
    color: white;
    padding: 80px 20px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: #ff6600;
    font-weight: 600;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff6600;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #ff6600, #ff9900);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    margin-bottom: 0;
    padding-left: 0;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* WhatsApp Button - Enhanced */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    padding: 18px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}