/* Explore More Section Styles */
.explore-more-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 40px;
    margin-top: 80px;
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.explore-more-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8ACD00 0%, #7AB33A 50%, #8ACD00 100%);
}

.explore-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #8ACD00;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0px 0px 30px rgba(138, 205, 0, 0.2);
}

.explore-subtitle {
    font-size: 18px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.journey-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}

.explore-more-section .explore-card {
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(138, 205, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    width: 100%;
    min-height: 80px;
    opacity: 1;
    visibility: visible;
}

.explore-more-section .explore-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8ACD00 0%, #7AB33A 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.explore-more-section .explore-card:hover::after {
    transform: scaleX(1);
}

.explore-more-section .explore-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(138, 205, 0, 0.3);
}

.explore-more-section .explore-card-image {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.explore-more-section .explore-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.explore-more-section .explore-card:hover .explore-card-image {
    box-shadow: 0 4px 15px rgba(138, 205, 0, 0.2);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.explore-more-section .explore-card h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
    position: relative;
    z-index: 2;
    line-height: 1.3;
    flex: 1;
}

.explore-more-section .explore-card:hover h3 {
    color: #8ACD00;
}

.explore-more-section .explore-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 100%;
}

.explore-more-section .explore-card-link:hover {
    color: inherit;
}

.explore-more-section .explore-card-link.active .explore-card {
    border-color: #8ACD00;
    background: linear-gradient(135deg, rgba(138, 205, 0, 0.05) 0%, rgba(138, 205, 0, 0.02) 100%);
}

/* Responsive Design for Explore More Section */
@media (max-width: 1200px) {
    .journey-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .explore-more-section {
        padding: 25px 20px;
        margin-top: 40px;
        max-width: 100%;
    }
    
    .explore-title {
        font-size: 2.2rem;
    }
    
    .explore-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .journey-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 600px;
    }
    
    .explore-more-section .explore-card {
        padding: 15px 15px;
    }
    
    .explore-more-section .explore-card-image {
        width: 45px;
        height: 45px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .journey-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .explore-title {
        font-size: 2rem;
    }
}
