/* Pricing Page Specific Styles */

/* Pricing Hero Section */
.pricing-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 221, 221, 0.1) 0%, rgba(26, 32, 44, 1) 70%);
    padding-top: 120px;
}

.pricing-hero .hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.pricing-hero .hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.pricing-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(26, 32, 44, 1) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    animation: cardSlideIn 0.8s ease-out;
    margin-top: 25px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 221, 221, 0.05), rgba(74, 144, 226, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: var(--shadow-heavy), 0 25px 50px rgba(0, 221, 221, 0.2);
    border-color: var(--teal-primary);
}

.pricing-card.popular {
    border: 2px solid var(--teal-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-light), 0 0 30px rgba(0, 221, 221, 0.3);
}

.pricing-card.popular:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-teal);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.pricing-card:hover .plan-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 221, 221, 0.4);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--marble-white);
    position: relative;
    z-index: 2;
}

.plan-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.price-display {
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.currency {
    font-size: 1.5rem;
    color: var(--teal-primary);
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(0, 221, 221, 0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(0, 221, 221, 0.6)); }
}

.period, .per {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 5px;
}

.features-list {
    text-align: left;
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    color: var(--teal-light);
}

.feature i {
    color: var(--teal-primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.2);
    color: var(--teal-light);
}

.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 30px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    color: var(--marble-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-teal);
    transition: left 0.4s ease;
    z-index: -1;
}

.plan-btn:hover::before {
    left: 0;
}

.plan-btn:hover {
    color: white;
    border-color: var(--teal-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.plan-btn.featured {
    background: var(--gradient-teal);
    color: white;
    border-color: var(--teal-primary);
}

.plan-btn.featured::before {
    background: linear-gradient(135deg, var(--teal-light), var(--teal-primary));
}

/* Additional Services Section */
.additional-services {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 32, 44, 1) 0%, rgba(74, 144, 226, 0.05) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-addon {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: addonSlideIn 0.8s ease-out;
}

.service-addon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 221, 221, 0.03), rgba(74, 144, 226, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-addon:hover::before {
    opacity: 1;
}

.service-addon:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--teal-primary);
}

.addon-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
}

.service-addon:hover .addon-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 221, 221, 0.4);
}

.service-addon h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--marble-white);
}

.service-addon p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.addon-price {
    margin: 25px 0;
}

.addon-price .currency {
    font-size: 1.2rem;
    color: var(--teal-primary);
    font-weight: 600;
}

.addon-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 5px;
}

.addon-features {
    text-align: left;
    margin: 25px 0;
}

.addon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--teal-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.addon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-teal);
    transition: left 0.3s ease;
    z-index: -1;
}

.addon-btn:hover::before {
    left: 0;
}

.addon-btn:hover {
    color: white;
    border-color: var(--teal-primary);
    transform: translateY(-2px);
}

/* CTA Section */
.pricing-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(26, 32, 44, 1) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes addonSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-hero {
        padding-top: 100px;
        min-height: 50vh;
    }
    
    .pricing-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .pricing-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card:hover {
        transform: translateY(-5px);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-addon {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .pricing-hero .hero-title {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .addon-price .amount {
        font-size: 2rem;
    }
    
    .pricing-card, .service-addon {
        padding: 25px 15px;
    }
    
    .plan-icon, .addon-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
