/* Pricing Page Styles */

/* Grand Opening Banner */
.grand-opening-banner {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.grand-opening-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.banner-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.banner-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-text p {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.limited-time {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.pricing-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-content {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Session Type Toggle */
.session-type-toggle {
    text-align: center;
    margin-bottom: 3rem;
}

.toggle-container {
    display: inline-flex;
    background: white;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 1rem;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.toggle-btn:hover:not(.active) {
    background: #f8f9fa;
    color: #333;
}

.toggle-description {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.toggle-description span {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #ffd700;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.pricing-card.featured .pricing-header .service-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.service-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-details {
    margin-bottom: 2rem;
}

.price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-online, .price-in-person {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Discount Pricing Styles */
.discount-pricing {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.original-price {
    display: flex;
    align-items: center;
    color: #999;
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: 500;
}

.original-price .currency {
    font-size: 1rem;
}

.original-price .amount {
    font-size: 1.5rem;
    font-weight: 500;
}

.discounted-price {
    display: flex;
    align-items: baseline;
    color: #1a1a2e;
}

.discounted-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #28a745;
}

.discounted-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0.2rem;
}

.discounted-price .period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0.2rem;
}

.period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

.features li i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.pricing-footer {
    text-align: center;
}

.pricing-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.pricing-btn.featured {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
}

.pricing-btn.featured:hover {
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
    color: #1a1a2e;
}

.pricing-info {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 1.5rem;
}

.info-card h3 {
    color: #1a1a2e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-card h3 i {
    color: #667eea;
    font-size: 1.1rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grand-opening-banner {
        padding: 15px 0;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .banner-text h2 {
        font-size: 1.5rem;
    }
    
    .banner-text p {
        font-size: 1.1rem;
    }
    
    .discounted-price .amount {
        font-size: 2.5rem;
    }
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-hero p {
        font-size: 1.1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-info {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 80px 0 60px;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-content {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .amount {
        font-size: 2rem;
    }
}
