/* ======================================
   WOMEN HEALTH PAGE STYLES - UNIQUE CLASSES
   All classes prefixed with 'wh-' to avoid conflicts
   ====================================== */

/* ===== COMMON UTILITIES ===== */
.wh-section-padding {
    padding: 80px 0;
}

.wh-section-header {
    margin-bottom: 50px;
}

.wh-section-subtitle-badge {
    display: inline-block;
    background: rgba(227,30,36,0.1);
    color: #E31E24;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.wh-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 15px;
    line-height: 1.3;
}

.wh-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PAGE HEADER ===== */
.wh-page-header {
    position: relative;
    padding: 150px 0 80px;
    overflow: hidden;
}

.wh-page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.wh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,51,102,0.7);
}

.wh-page-header-content {
    position: relative;
    z-index: 2;
}

.wh-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

/* ===== WOMEN INTRO SECTION ===== */
.wh-intro {
    position: relative;
}

.wh-intro img {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.wh-intro-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.wh-intro-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.wh-stat-box {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.wh-stat-box:hover {
    border-color: #E31E24;
    transform: translateY(-5px);
}

.wh-stat-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #E31E24;
    margin-bottom: 5px;
}

.wh-stat-box p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* ===== WOMEN SERVICE CARDS ===== */
.wh-service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #e0e0e0;
}

.wh-service-card:hover {
    border-color: #003366;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.wh-service-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.wh-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wh-service-card:hover .wh-service-img img {
    transform: scale(1.1);
}

.wh-service-content {
    padding: 30px;
}

.wh-service-icon {
    width: 60px;
    height: 60px;
    background: #E31E24;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.wh-service-card:hover .wh-service-icon {
    background: #003366;
    transform: scale(1.1) rotate(360deg);
}

.wh-service-card h4 {
    color: #003366;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.wh-service-card p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.wh-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wh-feature-list li {
    padding: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.wh-feature-list li i {
    color: #E31E24;
    font-size: 0.9rem;
}

/* ===== LIFE STAGES CARDS ===== */
.wh-stage-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #e0e0e0;
}

.wh-stage-card:hover {
    border-color: #e4007e;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.wh-stage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e4007e, #d41868);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.wh-stage-card:hover .wh-stage-icon {
    background: #003366;
    transform: rotateY(360deg);
}

.wh-stage-card h4 {
    color: #003366;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.wh-stage-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ===== COMMON CONDITIONS CARDS ===== */
.wh-condition-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.4s ease;
    border: 1px solid #e0e0e0;
}

.wh-condition-card:hover {
    border-color: #003366;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.wh-condition-icon {
    width: 70px;
    height: 70px;
    background: #003366;
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wh-condition-card:hover .wh-condition-icon {
    background: #E31E24;
    transform: scale(1.1);
}

.wh-condition-content h4 {
    color: #003366;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.wh-condition-content p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* ===== WARNING CARDS (WHEN TO CONSULT) ===== */
.wh-warning-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.wh-warning-card:hover {
    border-color: #E31E24;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.wh-warning-card h4 {
    color: #003366;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wh-warning-card h4 i {
    color: #E31E24;
    font-size: 1.5rem;
}

.wh-warning-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wh-warning-card ul li {
    padding: 12px 0;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 25px;
    position: relative;
}

.wh-warning-card ul li:last-child {
    border-bottom: none;
}

.wh-warning-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E31E24;
    font-size: 1.5rem;
    line-height: 1;
}

/* ===== HEALTH TIP CARDS ===== */
.wh-tip-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #e0e0e0;
    position: relative;
}

.wh-tip-card:hover {
    border-color: #E31E24;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.wh-tip-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(227,30,36,0.1);
    color: #E31E24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.wh-tip-icon {
    width: 75px;
    height: 75px;
    background: #003366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.wh-tip-card:hover .wh-tip-icon {
    background: #E31E24;
    transform: scale(1.1);
}

.wh-tip-card h4 {
    color: #003366;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.wh-tip-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.wh-cta-section {
    background: linear-gradient(135deg, #003366, #005fa3);
    color: #fff;
}

.wh-cta-wrapper {
    padding: 40px;
    border-radius: 20px;
}

.wh-cta-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.wh-cta-wrapper p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .wh-intro-stats {
        flex-wrap: wrap;
    }

    .wh-stat-box {
        flex: 1 1 calc(33.333% - 15px);
    }

    .wh-intro img {
        margin-bottom: 30px;
    }

    .wh-section-title {
        font-size: 2rem;
    }

    .wh-page-title {
        font-size: 2.5rem;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .wh-section-padding {
        padding: 60px 0;
    }

    .wh-intro-stats {
        gap: 15px;
    }

    .wh-stat-box {
        flex: 1 1 100%;
    }

    .wh-stat-box h3 {
        font-size: 1.8rem;
    }

    .wh-service-img {
        height: 200px;
    }

    .wh-service-content {
        padding: 25px 20px;
    }

    .wh-stage-card {
        padding: 30px 20px;
    }

    .wh-condition-card {
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }

    .wh-condition-icon {
        margin: 0 auto;
    }

    .wh-warning-card {
        padding: 25px 20px;
    }

    .wh-tip-card {
        padding: 30px 20px;
    }

    .wh-section-title {
        font-size: 1.8rem;
    }

    .wh-page-title {
        font-size: 2rem;
    }

    .wh-cta-wrapper h2 {
        font-size: 1.6rem;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    .wh-intro-stats {
        flex-direction: column;
    }

    .wh-stat-box {
        flex: 1 1 100%;
    }

    .wh-service-img {
        height: 180px;
    }

    .wh-service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .wh-service-card h4 {
        font-size: 1.2rem;
    }

    .wh-stage-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .wh-condition-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .wh-tip-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }

    .wh-tip-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .wh-section-title {
        font-size: 1.6rem;
    }

    .wh-cta-wrapper {
        padding: 30px 20px;
    }
}
