/* Enhanced Procedure Detail Sections CSS */
/* Package Cards */
.package-card {
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color, #3b80c6);
}

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

.package-pricing {
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    margin: 15px 0;
}

.price-discounted {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
}

.price-original {
    font-size: 1rem;
}

.discount-badge {
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
}

.package-detail-item {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 0.9rem;
}

/* Preparation and Aftercare */
.preparation-checklist,
.aftercare-checklist {
    margin: 20px 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #28a745;
}

.checklist-item i {
    margin-top: 2px;
}

.alert-item {
    display: flex;
    align-items: center;
    margin: 12px 0;
    padding: 10px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 6px;
    border-left: 3px solid #ffc107;
}

/* Alternative Procedures */
.alternative-card {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.alternative-card:hover {
    border-color: #3b80c6;
    box-shadow: 0 6px 20px rgba(59, 128, 198, 0.1);
}

.alternative-comparison {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    font-size: 0.9rem;
}

.comparison-label {
    font-weight: 600;
    color: #6c757d;
}

.comparison-value {
    color: #495057;
    font-weight: 500;
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 10px;
}

.accordion-button {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    font-weight: 500;
    color: #495057;
}

.accordion-button:not(.collapsed) {
    background: #3b80c6;
    color: white;
    border-color: #3b80c6;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(59, 128, 198, 0.25);
}

.accordion-body {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-top: none;
}

/* Clinic Cards */
.clinic-card {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.clinic-card:hover {
    border-color: #3b80c6;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.clinic-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.clinic-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 5px;
}

.rating-stars i {
    font-size: 0.9rem;
}

/* Floating Book Now Button */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    padding: 15px 25px;
    background: linear-gradient(135deg, #3b80c6 0%, #2d6aa0 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(59, 128, 198, 0.4);
    transition: all 0.3s ease;
}

.floating-book-btn:hover {
    background: linear-gradient(135deg, #2d6aa0 0%, #1f5582 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 128, 198, 0.5);
}

/* Social Proof Badges */
.popularity-badge {
    display: inline-flex;
    align-items: center;
    background: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.trending-badge {
    background: #ff6b35;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Enhanced Hero Section */
.hero-popularity-stats {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.popularity-stat {
    text-align: center;
    color: rgba(255,255,255,0.9);
}

.stat-number {
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
    
    .package-card,
    .clinic-card,
    .alternative-card {
        margin-bottom: 20px;
    }
    
    .nav nav-pills-modern {
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}