/* ============================================
   WHY CHOOSE TIGER TV SECTION - REDESIGNED
   ============================================ */

.why-choose-tiger {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    overflow: hidden;
}

/* Background Pattern */
.why-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.why-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(255, 107, 53, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 107, 53, 0.03) 87.5%, rgba(255, 107, 53, 0.03)),
        linear-gradient(150deg, rgba(255, 107, 53, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 107, 53, 0.03) 87.5%, rgba(255, 107, 53, 0.03));
    background-size: 80px 140px;
    opacity: 0.5;
}

/* Section Header */
.section-header-why {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-badge-why {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.badge-icon-why {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.badge-text-why {
    font-weight: 600;
    color: #FF6B35;
    font-size: 1rem;
}

.section-title-why {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-tiger {
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-subtitle-why {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Feature Card */
.why-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #FFD700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.why-feature-card:hover::before {
    transform: scaleX(1);
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.feature-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.why-feature-card:hover .feature-icon-bg {
    transform: rotate(45deg) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 215, 0, 0.2));
}

.feature-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #FF6B35;
    z-index: 2;
    transition: all 0.4s ease;
}

.why-feature-card:hover .feature-icon {
    transform: translate(-50%, -50%) scale(1.2);
    color: #FFD700;
}

.feature-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
    z-index: 3;
}

/* Feature Content */
.feature-content {
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #555;
}

.feature-highlights li i {
    color: #4CAF50;
    font-size: 1rem;
}

/* Stats Section */
.why-stats-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.05));
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item-why {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item-why:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.stat-icon-why {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-number-why {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label-why {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* CTA Section */
.why-cta-section {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-why-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-why-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-why-cta:hover::before {
    left: 100%;
}

.btn-why-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-icon-why {
    font-size: 1.5rem;
}

.btn-text-why {
    position: relative;
    z-index: 1;
}

.btn-arrow-why {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-why-cta:hover .btn-arrow-why {
    transform: translateX(-5px);
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-tiger {
        padding: 3rem 0;
    }
    
    .section-header-why {
        margin-bottom: 2.5rem;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-feature-card {
        padding: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .why-stats-section {
        padding: 2rem 1rem;
    }
    
    .btn-why-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title-why {
        font-size: 1.8rem;
    }
    
    .section-subtitle-why {
        font-size: 1rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .why-choose-tiger {
        background: white;
        padding: 2rem 0;
    }
    
    .why-background {
        display: none;
    }
    
    .why-feature-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
