/* Pricing Page Styles */

/* Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, #f8fdfd 0%, #ffffff 35%, #e8f8f5 100%);
    padding: 120px 0 80px;
}

.pricing-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pricing-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.pricing-hero .highlight {
    color: var(--primary-teal);
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Sections */
.pricing-section {
    padding: 80px 0;
    position: relative;
}

.pricing-section:nth-child(even) {
    background: linear-gradient(135deg, #f8fdfd 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Categories */
.service-category {
    margin-bottom: 60px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.1);
    border: 1px solid rgba(45, 135, 131, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    transition: height 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
}

.pricing-card:hover::before {
    height: 6px;
}

.pricing-card.featured {
    border: 2px solid var(--primary-teal);
    transform: scale(1.02);
    background: rgba(45, 135, 131, 0.02);
}

.pricing-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, var(--light-teal), var(--primary-teal));
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h3,
.pricing-header h4 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Price Display */
.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.price-display.small {
    gap: 10px;
    margin-bottom: 0;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-grey);
    text-decoration: line-through;
    font-weight: 500;
}

.discounted-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-teal);
}

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

.price-display.small .discounted-price {
    font-size: 1.4rem;
}

.savings-badge {
    background: linear-gradient(135deg, #ff6b35, #ff4081);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* TV Pricing Tiers */
.tv-pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(45, 135, 131, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(45, 135, 131, 0.1);
}

.tier .size {
    font-weight: 600;
    color: var(--text-dark);
}

/* Pricing Tiers */
.pricing-tiers {
    margin-bottom: 20px;
}

.tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(45, 135, 131, 0.1);
}

.tier-row:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: var(--text-dark);
}

/* Pricing Features */
.pricing-features {
    margin-bottom: 25px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    color: var(--text-grey);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Pricing Notes */
.pricing-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.pricing-note p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-note strong {
    color: #e65100;
    font-weight: 600;
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
    margin-top: 25px;
}

.pricing-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-btn.primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    box-shadow: 0 8px 25px rgba(45, 135, 131, 0.3);
}

.pricing-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45, 135, 131, 0.4);
}

.pricing-btn.secondary {
    background: rgba(45, 135, 131, 0.1);
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.pricing-btn.secondary:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
}

/* CTA Section */
.pricing-cta-section {
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    padding: 80px 0;
    text-align: center;
    color: white;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.cta-btn.secondary:hover {
    background: white;
    color: var(--primary-teal);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .pricing-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .tv-pricing-tiers {
        gap: 12px;
    }
    
    .tier {
        padding: 12px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-hero {
        padding: 100px 0 60px;
    }
    
    .pricing-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 20px 15px;
    }
    
    .discounted-price {
        font-size: 1.6rem;
    }
    
    .price-display.small .discounted-price {
        font-size: 1.2rem;
    }
}