/* Price List Specific Styling */

/* Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%),
                url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.pricing-hero .container {
    position: relative;
    z-index: 2;
}

.pricing-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.pricing-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-weight: 500;
    color: #2c3e50;
}

.hero-features .icon {
    font-size: 1.2rem;
}

/* Filter Section */
.pricing-filters {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Pricing Grid */
.pricing-grid {
    padding: 4rem 0;
    background: #fff;
}

.category-section {
    margin-bottom: 4rem;
}

.category-section.hidden {
    display: none;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4e4a6);
    border-radius: 2px;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Treatment Cards */
.treatment-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #f0f0f0;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.treatment-card:nth-child(1) { animation-delay: 0.1s; }
.treatment-card:nth-child(2) { animation-delay: 0.2s; }
.treatment-card:nth-child(3) { animation-delay: 0.3s; }
.treatment-card:nth-child(4) { animation-delay: 0.4s; }
.treatment-card:nth-child(5) { animation-delay: 0.5s; }
.treatment-card:nth-child(6) { animation-delay: 0.6s; }

.treatment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.treatment-card:hover::before {
    left: 100%;
}

.treatment-card.popular {
    border: 2px solid #d4af37;
    transform: scale(1.02);
}

.treatment-card.premium {
    border: 2px solid #8b4513;
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
}

.popular-badge, .premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.popular-badge {
    background: linear-gradient(45deg, #d4af37, #f4e4a6);
}

.premium-badge {
    background: linear-gradient(45deg, #8b4513, #cd853f);
}

.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    transition: all 0.3s ease;
}

.treatment-card:hover .card-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.treatment-card:hover .card-header h3 {
    color: #d4af37;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    transition: transform 0.3s ease;
}

.treatment-card:hover .price {
    transform: scale(1.1);
}

.card-body {
    padding: 0 2rem 1rem;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    flex: 1;
}

.detail-item .icon {
    font-size: 1rem;
}

.benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    border-left: 3px solid #d4af37;
    transition: all 0.3s ease;
}

.treatment-card:hover .benefits {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    border-left-color: #b8941f;
    transform: translateX(5px);
}

.benefits strong {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.treatment-card:hover .benefits strong {
    color: #d4af37;
}

.card-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.book-btn {
    background: linear-gradient(45deg, #d4af37, #f4e4a6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.book-btn:hover::before {
    width: 300px;
    height: 300px;
}

.book-btn:hover {
    background: linear-gradient(45deg, #b8941f, #d4af37);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.book-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Loading Section */
.loading-section {
    text-align: center;
    padding: 3rem 0;
    color: #666;
    font-style: italic;
}

/* CTA Section */
.pricing-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.pricing-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #f4e4a6);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #b8941f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-hero p {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-features .feature {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .card-header, .card-body, .card-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 100px 0 60px;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    
    .treatment-card {
        margin: 0 0.5rem;
    }
}
