/* ============================================
   TIGER TV - SUBSCRIPTION PAGE STYLES
   ============================================ */

/* Hero Section */
.subscription-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    padding: 6rem 0 4rem;
}

.subscription-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.subscription-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.intro-section {
    background: #ffffff;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}

.content-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 2rem 0 1rem;
}

.content-wrapper p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 1.5rem 0;
    padding-right: 2rem;
}

.content-wrapper li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.content-wrapper li strong {
    color: #FF6B35;
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Steps Section */
.steps-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-content ul {
    margin: 1rem 0;
    padding-right: 1.5rem;
}

.step-content li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Tip and Warning Boxes */
.tip-box,
.warning-box {
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.tip-box {
    background: rgba(76, 175, 80, 0.1);
    border-right: 4px solid #4CAF50;
}

.warning-box {
    background: rgba(255, 152, 0, 0.1);
    border-right: 4px solid #FF9800;
}

.tip-box strong,
.warning-box strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Renewal Section */
.renewal-section {
    background: #ffffff;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
}

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

.cta-box {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
}

.cta-box p {
    font-size: 1.2rem;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD700, #FF6B35);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscription-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-wrapper h2 {
        font-size: 2rem;
    }
    
    .step-card {
        flex-direction: column;
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
