/* Health Checkups Page Styles */

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.package-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #f0f0f0;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.package-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-parameters {
    color: #2563eb;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.package-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.info-item i {
    color: #2563eb;
    font-size: 14px;
    width: 16px;
}

.package-pricing {
    margin-bottom: 20px;
    position: relative;
}

.discount-badge {
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 0;
}

.discounted-price {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    margin-top: 8px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    font-weight: 400;
}

.collection-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.collection-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #10b981;
    font-weight: 500;
}

.collection-option i {
    color: #10b981;
    font-size: 16px;
}

.btn-book-now {
    background: #1e40af;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-book-now:hover {
    background: #1d4ed8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0b2baa, #0df8de);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0b2baa 0%, #0b2baa 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    background: #0df8de;
    color: #0b2baa;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: rgba(13, 248, 222, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 248, 222, 0.3);
}

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .health-checkups-hero {
        padding: 60px 0 40px;
    }

    .packages-section {
        padding: 40px 0;
    }

    .hero-stats {
        margin-top: 20px;
    }

    .stat-item {
        margin-bottom: 15px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .collection-options {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}