/* Wellness Section Styles - Card Layout 2.0 */
:root {
    --wellness-primary: #0076a3;
    --wellness-light-bg: #f8fbfe;
    --wellness-card-bg: #ffffff;
    --wellness-text: #2c3e50;
    --wellness-text-light: #5a6b7d;
    --wellness-border: #e8eff5;
    --wellness-shadow: 0 10px 30px rgba(0, 76, 163, 0.05);
    --wellness-accent: #b61c22;
    /* Maintaining the brand red for buttons */
}

.wellness-main-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* Section Header Styles */
.wellness-section {
    margin-bottom: 80px;
}

.wellness-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--wellness-text);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.wellness-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    background-color: var(--wellness-accent);
    border-radius: 3px;
}

.wellness-section-desc {
    font-size: 16px;
    color: var(--wellness-text-light);
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 40px;
}

/* Card Grid Layout */
.wellness-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Wellness Card Styling */
.wellness-package-card {
    background-color: var(--wellness-card-bg);
    border: 1px solid var(--wellness-border);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--wellness-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wellness-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(182, 28, 34, 0.08);
    border-color: var(--wellness-accent);
}

.wellness-card-header {
    margin-bottom: 20px;
}

.wellness-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--wellness-text);
    margin-bottom: 8px;
}

.wellness-card-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--wellness-accent);
}

.wellness-card-desc {
    font-size: 15px;
    color: var(--wellness-text-light);
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.wellness-tests-summary {
    margin-bottom: 30px;
}

.wellness-tests-summary h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--wellness-text);
    margin-bottom: 12px;
}

.wellness-tests-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wellness-test-item {
    background-color: var(--wellness-light-bg);
    color: var(--wellness-text-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid var(--wellness-border);
}

/* Card Action Buttons */
.wellness-card-actions {
    display: flex;
    gap: 15px;
}

.wellness-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wellness-btn-outline {
    border: 2px solid var(--wellness-accent);
    color: var(--wellness-accent);
    background-color: transparent;
}

.wellness-btn-outline:hover {
    background-color: var(--wellness-accent);
    color: #ffffff;
}

.wellness-btn-primary {
    background-color: var(--wellness-accent);
    color: #ffffff;
    border: 2px solid var(--wellness-accent);
}

.wellness-btn-primary:hover {
    background-color: #9a171d;
    border-color: #9a171d;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .wellness-card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .wellness-section h2 {
        font-size: 26px;
    }

    .wellness-card-container {
        grid-template-columns: 1fr;
    }

    .wellness-package-card {
        padding: 25px;
    }
}