/* Your Health Journey Section Component Styles */

.your-health-journey-section {
    background: var(--white-color);
}

.your-health-journey-section .section-header {
    text-align: center;
}

.your-health-journey-section .section-description {
    font-size: 22px;
    line-height: 1.4;
    color: var(--body-color);
    max-width: 1000px;
    margin: 0 auto 0;
}

/* Product Cards Grid */
.your-health-journey-section .health-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    
}

.your-health-journey-section .journey-card {
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    border-radius: 18px;
    overflow: hidden;
    gap: 20px;
    padding: 30px 40px;
}


/* Card Image with Colored Background */
.your-health-journey-section .journey-card-image {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 366px;
}

.your-health-journey-section .journey-card-image img {
    max-width: 100%;
    height: auto;
    max-height: 366px;
    object-fit: contain;
    display: block;
}

.your-health-journey-section .journey-card.bg-gradient-perpal {
    /* background: var(--gradient-perpal); */
    border: 1px solid var(--GLP-light, #F3E6FE);
    background: var(--Gradient-Perpal, linear-gradient(109deg, #FFF -2.93%, #E4C7FC 111.57%));
}

.your-health-journey-section .journey-card.bg-longevity-gr {
    /* background: var(--longevity-gr); */
    border: 1px solid var(--longevity-light, #E7EEE7);
    background: var(--longevity-gr, linear-gradient(134deg, #FFF 1.55%, #C7D5C9 100%));
}

.your-health-journey-section .journey-card.bg-testosterone-gr {
    /* background: var(--testosterone-gr); */
    border: 1px solid var(--testosterone-light, #E0E5ED);
    background: linear-gradient(160deg, #FFF 0%, #717F95 166.28%);
}



/* Card Content */
.your-health-journey-section .journey-card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.your-health-journey-section .journey-card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--title-color);
    margin: 0;
    text-align: center;
}

.your-health-journey-section .journey-card-description {
    font-size: 18px;
    line-height: 1.5;
    color: var(--title-color);
    margin: 0;
    text-align: center;
}

/* Card Features List */
.your-health-journey-section .journey-card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0 0 0;
    border-top: solid 1px var(--brand-color);
}

.your-health-journey-section .journey-card-features ul,
.your-health-journey-section .journey-card-features ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    
}

.your-health-journey-section .journey-card.bg-gradient-perpal .journey-card-features {
    border-top-color: var(--brand-color);
}
.your-health-journey-section .journey-card.bg-longevity-gr .journey-card-features {
    border-top-color: var(--longevity-dark);
}
.your-health-journey-section .journey-card.bg-testosterone-gr .journey-card-features {
    border-top-color: var(--testosterone-dark);
}

.your-health-journey-section .journey-card-features ul li {
    padding-left: 27px;
    display: flex;
    position: relative;
    line-height: 24px;
}
.your-health-journey-section .journey-card-features ul li::after {
    position: absolute;
    content: "";
    left: 0;
    top: 3px;
    background-image: url(../../images/right-icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 18px;
    height: 18px;
}

.your-health-journey-section .journey-card.bg-longevity-gr .journey-card-features ul li::after {
    background-image: url(../../images/longevity-right-icon.svg);
}
.your-health-journey-section .journey-card.bg-testosterone-gr .journey-card-features ul li::after {
    background-image: url(../../images/testosterone-right-icon.svg);
}


/* Card Button */
.your-health-journey-section .journey-card-button {
    margin-top: auto;
    padding-top: 8px;
}

.your-health-journey-section .journey-card-button .revana-btn {
    justify-content: center;
}

/* Bottom Disclaimer */
.your-health-journey-section .journey-disclaimer {
    text-align: left;
    max-width: 100%;
    margin: 30px auto 0;
}

.your-health-journey-section .journey-disclaimer p {
    font-size: 12px;
    line-height: 1.5;
    color: #828282;
    margin: 0;
}

.your-health-journey-section .journey-disclaimer h6,
.your-health-journey-section .journey-disclaimer strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--title-color);
    margin: 0 0 8px 0;
}

/* Bottom CTA Button */
.your-health-journey-section .cta-button {
    margin: 30px 0 0 0;
    justify-content: center;
}



/* Responsive Styles */

/* Extra Large Desktop */
@media (max-width: 1799px) {
    .your-health-journey-section .health-journey-grid {
        gap: 26px;
    }
}

/* Large Desktop */
@media (max-width: 1439px) {
    

    .your-health-journey-section .section-description {
        font-size: 18px;
    }

    .your-health-journey-section .health-journey-grid {
        gap: 24px;
    }
    .your-health-journey-section .journey-card {
        padding: 0;
    }
    .your-health-journey-section .journey-card-image {
        min-height: 280px;
        padding: 30px 20px;
    }

    .your-health-journey-section .journey-card-image img {
        max-height: 240px;
    }

    .your-health-journey-section .journey-card-content {
        padding: 28px 24px 24px;
        gap: 18px;
    }

    .your-health-journey-section .journey-card-title {
        font-size: 22px;
    }

    .your-health-journey-section .journey-card-description {
        font-size: 15px;
    }

    .your-health-journey-section .journey-card-features li {
        font-size: 15px;
    }

    
}

/* Tablet Landscape */
@media (max-width: 1239px) {
    

    .your-health-journey-section .section-description {
        font-size: 17px;
    }

    .your-health-journey-section .health-journey-grid {
        gap: 20px;
        
    }

    .your-health-journey-section .journey-card-image {
        min-height: 260px;
        padding: 24px 16px;
    }

    .your-health-journey-section .journey-card-image img {
        max-height: 220px;
    }

    .your-health-journey-section .journey-card-content {
        padding: 24px 20px 20px;
        gap: 16px;
    }

    .your-health-journey-section .journey-card-title {
        font-size: 20px;
    }

    .your-health-journey-section .journey-card-description {
        font-size: 14px;
    }

    .your-health-journey-section .journey-card-features {
        gap: 10px;
    }

    .your-health-journey-section .journey-card-features ul,
    .your-health-journey-section .journey-card-features ol {
        gap: 10px;
    }

    .your-health-journey-section .journey-card-features li {
        font-size: 14px;
        padding-left: 28px;
    }

    .your-health-journey-section .journey-card-features li::before {
        width: 18px;
        height: 18px;
    }

    
}

/* Tablet Portrait */
@media (max-width: 991px) {
    

    .your-health-journey-section .section-description {
        font-size: 16px;
    }

    .your-health-journey-section .health-journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        
    }

    .your-health-journey-section .journey-card-image {
        min-height: 240px;
        padding: 20px 16px;
    }

    .your-health-journey-section .journey-card-image img {
        max-height: 200px;
    }

    .your-health-journey-section .journey-card-content {
        padding: 20px 18px 18px;
        gap: 14px;
    }

    .your-health-journey-section .journey-card-title {
        font-size: 18px;
    }

    .your-health-journey-section .journey-disclaimer {
        margin-top: 30px;
    }

    
}

/* Mobile */
@media (max-width: 767px) {
    

    .your-health-journey-section .section-description {
        font-size: 15px;
    }

    .your-health-journey-section .health-journey-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        
    }

    .your-health-journey-section .journey-card {
        max-width: 500px;
        margin: 0 auto;
        padding: 0;
    }

    .your-health-journey-section .journey-card-image {
        min-height: 280px;
        padding: 30px 20px;
    }

    .your-health-journey-section .journey-card-image img {
        max-height: 240px;
    }

    .your-health-journey-section .journey-card-content {
        padding: 24px 20px 20px;
        gap: 16px;
    }

    .your-health-journey-section .journey-card-title {
        font-size: 20px;
    }

    .your-health-journey-section .journey-card-description {
        font-size: 15px;
    }

    .your-health-journey-section .journey-card-features {
        gap: 12px;
    }

    .your-health-journey-section .journey-card-features ul,
    .your-health-journey-section .journey-card-features ol {
        gap: 12px;
    }

    .your-health-journey-section .journey-card-features li {
        font-size: 15px;
        padding-left: 30px;
    }

    .your-health-journey-section .journey-card-features li::before {
        width: 20px;
        height: 20px;
    }

    .your-health-journey-section .journey-disclaimer {
        margin-top: 20px;
    }

    
}

