/* 
 * Tiger TV - Modern Hero Section (SEO Optimized)
 * Version: 1.0
 * Date: April 2026
 * Mobile-First Responsive Design
 */

/* ============================================
   HERO MODERN SECTION - SEO OPTIMIZED
   ============================================ */

.hero-modern {
    position: relative;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

/* ============================================
   HERO TEXT CONTENT
   ============================================ */

.hero-text {
    color: white;
}

.hero-main-title {
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.brand-highlight {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.service-description {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px 0;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-subtitle strong {
    color: #FFD700;
    font-weight: 700;
}

/* Hero Features List */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-features li i {
    color: #FFD700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CTA Buttons Group */
.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary-hero,
.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-hero {
    background: white;
    color: #FF6B35;
}

.btn-primary-hero:hover {
    background: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.trust-item i {
    color: #FFD700;
    font-size: 1.2rem;
}

/* ============================================
   HERO VISUAL ELEMENT
   ============================================ */

.hero-visual {
    position: relative;
    height: 500px;
}

/* Devices Showcase */
.devices-showcase {
    position: relative;
    width: 100%;
    height: 400px;
}

.device-frame {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.tv-frame {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    top: 0;
    right: 0;
    border: 8px solid #1A1A1A;
}

.screen-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    animation: screenGlow 3s ease-in-out infinite;
}

@keyframes screenGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.screen-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35 0%, #FFA500 100%);
}

.playing-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #FF0000;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.live-text {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.mobile-frame {
    width: 180px;
    height: 320px;
    background: #1A1A1A;
    bottom: 0;
    left: 40px;
    border: 6px solid #2C3E50;
    border-radius: 24px;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #FFA500 100%);
    border-radius: 18px;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    min-width: 100px;
    animation: floatUp 3s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) {
    animation-delay: 1s;
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #FF6B35;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* ============================================
   BACKGROUND DECORATION
   ============================================ */

.hero-bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFD700 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #FF8C42 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #FFA500 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-30px, 30px);
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 400px;
        order: -1;
    }

    .brand-highlight {
        font-size: 3rem;
    }

    .service-description {
        font-size: 1.75rem;
    }

    .devices-showcase {
        height: 350px;
    }

    .tv-frame {
        width: 350px;
        height: 220px;
    }

    .mobile-frame {
        width: 160px;
        height: 280px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .hero-modern {
        padding: 60px 0 80px;
        min-height: auto;
    }

    .hero-container {
        padding: 0 16px;
    }

    .brand-highlight {
        font-size: 2.5rem;
    }

    .service-description {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-features {
        margin-bottom: 32px;
    }

    .hero-features li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-trust-badges {
        gap: 16px;
        justify-content: center;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .hero-visual {
        height: 300px;
    }

    .devices-showcase {
        height: 280px;
    }

    .tv-frame {
        width: 280px;
        height: 180px;
        right: 50%;
        transform: translateX(50%);
    }

    .mobile-frame {
        width: 130px;
        height: 230px;
        left: 20px;
    }

    .floating-stats {
        gap: 8px;
    }

    .stat-card {
        padding: 16px 18px;
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-modern {
        padding: 40px 0 60px;
    }

    .brand-highlight {
        font-size: 2rem;
    }

    .service-description {
        font-size: 1.25rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-features li {
        font-size: 0.85rem;
    }

    .hero-visual {
        height: 250px;
    }

    .devices-showcase {
        height: 230px;
    }

    .tv-frame {
        width: 240px;
        height: 150px;
    }

    .mobile-frame {
        width: 110px;
        height: 200px;
        left: 10px;
    }

    .stat-card {
        padding: 12px 14px;
        min-width: 70px;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-modern *,
    .stat-card,
    .pulse-dot,
    .screen-glow,
    .gradient-orb {
        animation: none !important;
        transition: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-modern {
        background: #FF6B35;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        border: 3px solid currentColor;
    }
}

/* Focus states for accessibility */
.btn-primary-hero:focus,
.btn-secondary-hero:focus {
    outline: 4px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

.btn-primary-hero:focus:not(:focus-visible),
.btn-secondary-hero:focus:not(:focus-visible) {
    outline: none;
}

/* Print styles */
@media print {
    .hero-modern {
        background: white;
        color: black;
        padding: 20px 0;
    }

    .hero-visual,
    .hero-bg-decoration,
    .hero-cta-group {
        display: none;
    }
}
