/* ===== Torin Style CSS Variables ===== */
:root {
    --primary-color: #C90E0E;
    --secondary-color: #6A9C89;
    --accent-color: #FF6B35;
    --success-color: #16a34a;
    --warning-color: #f59e0b;
    --info-color: #0891b2;
    --dark-bg: #0A0102;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --text-light: #ffffff;
    --text-muted: #6A5D5E;
    --body-color: #6A5D5E;
    --border-color: #E7E9EB;
    --gradient-primary: linear-gradient(135deg, #C90E0E 0%, #6A9C89 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #f59e0b 100%);
    --gradient-accent: linear-gradient(135deg, #16a34a 0%, #0891b2 100%);
    --gradient-hero: linear-gradient(135deg, #0A0102 0%, #1a1a1a 50%, #2a2a2a 100%);
    --shadow-lg: 0 10px 30px rgba(201, 14, 14, 0.2);
    --shadow-xl: 0 20px 60px rgba(201, 14, 14, 0.3);
    --shadow-glow: 0 0 30px rgba(201, 14, 14, 0.3);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --fontSize: 18px;
    --bodyFontFamily: "League Spartan", sans-serif;
    --headingFontFamily: "League Spartan", sans-serif;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--bodyFontFamily);
    font-size: var(--fontSize);
    color: var(--body-color);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 16px;
    }
}

/* ===== Enhanced Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--headingFontFamily);
    font-weight: 700;
}

.brand-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.brand-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.25rem;
}

/* ===== Smooth Scrolling ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Enhanced Navigation ===== */
.navbar {
    background: rgba(10, 1, 2, 0.95) !important;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 14, 14, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 1, 2, 0.98) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--text-light) !important;
    transition: var(--transition);
    font-weight: 800;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    font-family: var(--bodyFontFamily);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(201, 14, 14, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-cta {
    background: var(--gradient-primary);
    border: none;
    padding: 0.5rem 1.25rem;
    font-weight: 700;
    border-radius: 25px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    font-family: var(--bodyFontFamily);
}

/* ===== Torin Hero Section ===== */
.hero-torin {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-torin-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float-shape 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Hero Content Torin Style */
.hero-content-torin {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-family: var(--bodyFontFamily);
    box-shadow: var(--shadow-lg);
}

.hero-title-torin {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-family: var(--headingFontFamily);
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-description-torin {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: var(--bodyFontFamily);
    line-height: 1.6;
}

/* Hero Features Torin Style */
.hero-features-torin {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-torin {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 14, 14, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition);
    font-family: var(--bodyFontFamily);
}

.feature-torin:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.feature-torin i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-torin span {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Hero Stats Torin Style */
.hero-stats-torin {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-torin {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 14, 14, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition);
    font-family: var(--bodyFontFamily);
}

.stat-torin:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--headingFontFamily);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--bodyFontFamily);
}

/* Hero CTA Torin Style */
.hero-cta-torin {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-torin {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    font-family: var(--bodyFontFamily);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-torin:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 14, 14, 0.5);
}

.btn-outline-torin {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    font-family: var(--bodyFontFamily);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-torin:hover {
    background: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Hero Visual Torin Style */
.hero-visual-torin {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.main-device {
    position: relative;
    transform: perspective(1000px);
    transform-style: preserve-3d;
}

.device-screen-torin {
    background: var(--dark-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(201, 14, 14, 0.2);
    height: 400px;
}

.device-header-torin {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.device-time {
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.875rem;
    font-family: var(--bodyFontFamily);
}

.device-icons-torin {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
}

.device-icons-torin i {
    font-size: 1.2rem;
}

.device-content-torin {
    padding: 2rem 1.5rem;
    height: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.now-playing-torin {
    text-align: center;
}

.channel-logo-torin {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 1rem;
    font-family: var(--bodyFontFamily);
}

.program-info-torin h4 {
    margin: 0;
    color: var(--text-light);
    font-weight: 700;
    font-family: var(--headingFontFamily);
}

.program-info-torin p {
    margin: 0.25rem 0 0 0;
    color: var(--text-muted);
    font-family: var(--bodyFontFamily);
}

.live-indicator-torin {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--bodyFontFamily);
}

.live-dot-torin {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.device-controls-torin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 1rem;
}

.device-controls-torin i {
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.device-controls-torin i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Floating Devices Torin Style */
.floating-devices-torin {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.device-torin {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.tablet-torin {
    top: 10%;
    right: 10%;
    width: 120px;
    height: 80px;
    transform: rotate(-5deg);
    animation: float-device 6s ease-in-out infinite;
}

.phone-torin {
    top: 60%;
    left: 5%;
    width: 60px;
    height: 120px;
    transform: rotate(5deg);
    animation: float-device 8s ease-in-out infinite;
    animation-delay: 2s;
}

.laptop-torin {
    bottom: 10%;
    right: 15%;
    width: 140px;
    height: 90px;
    transform: rotate(-3deg);
    animation: float-device 7s ease-in-out infinite;
    animation-delay: 1s;
}

.device-screen-small-torin {
    background: var(--dark-secondary);
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.channel-logo-small-torin {
    background: var(--gradient-primary);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    display: inline-block;
    font-family: var(--bodyFontFamily);
}

@keyframes float-device {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotation, 5deg));
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* ===== Enhanced Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Particles Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    filter: blur(0.5px);
}

.floating-tv {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-play {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-globe {
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

.floating-wifi {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.floating-satellite {
    top: 15%;
    right: 20%;
    animation-delay: 3s;
}

.floating-cloud {
    top: 70%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.badge-text {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Enhanced Live Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.live-text {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.live-viewers {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.viewer-count {
    color: var(--success-color);
    font-weight: 700;
}

.quality-badges {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.quality-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quality-badge:first-child {
    background: var(--gradient-accent);
    color: white;
    border-color: transparent;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

.feature-text h6 {
    margin: 0;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.875rem;
}

.feature-text span {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-top: 0.25rem;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.trust-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.visual-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    transform: perspective(1000px);
    transform-style: preserve-3d;
}

.device-screen {
    background: var(--dark-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(37, 99, 235, 0.2);
    height: 400px;
}

.device-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.device-time {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.875rem;
}

.device-icons {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
}

.device-icons i {
    font-size: 1.2rem;
}

.device-content {
    padding: 2rem 1.5rem;
    height: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.now-playing {
    text-align: center;
}

.channel-info {
    color: var(--text-light);
}

.channel-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 1rem;
}

.program-info h4 {
    margin: 0;
    color: var(--text-light);
    font-weight: 600;
}

.program-info p {
    margin: 0.25rem 0 0 0;
    color: var(--text-muted);
}

.live-indicator-small {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.live-dot-small {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.device-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 1rem;
}

.device-controls i {
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.device-controls i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Floating Devices */
.floating-devices {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.device {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.tablet {
    top: 10%;
    right: 10%;
    width: 120px;
    height: 80px;
    transform: rotate(-5deg);
    animation: float-device 6s ease-in-out infinite;
}

.phone {
    top: 60%;
    left: 5%;
    width: 60px;
    height: 120px;
    transform: rotate(5deg);
    animation: float-device 8s ease-in-out infinite;
    animation-delay: 2s;
}

.laptop {
    bottom: 10%;
    right: 15%;
    width: 140px;
    height: 90px;
    transform: rotate(-3deg);
    animation: float-device 7s ease-in-out infinite;
    animation-delay: 1s;
}

.device-screen-small {
    background: var(--dark-secondary);
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.device-header-small {
    width: 100%;
    text-align: center;
}

.channel-logo-small {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    display: inline-block;
}

/* Background Channels Grid */
.channels-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    padding: 4rem;
    opacity: 0.08;
}

.bg-channel {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.bg-channel:hover {
    opacity: 0.15;
    transform: scale(1.05);
}

.bg-channel-logo {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
}

.bg-channel-info span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.875rem;
}

.bg-channel-1 {
    grid-column: 1;
    grid-row: 1;
    transform: translateY(-20px);
}

.bg-channel-2 {
    grid-column: 2;
    grid-row: 1;
    transform: translateY(10px);
}

.bg-channel-3 {
    grid-column: 3;
    grid-row: 1;
    transform: translateY(-10px);
}

.bg-channel-4 {
    grid-column: 1;
    grid-row: 2;
    transform: translateY(10px);
}

.bg-channel-5 {
    grid-column: 2;
    grid-row: 2;
    transform: translateY(-20px);
}

.bg-channel-6 {
    grid-column: 3;
    grid-row: 2;
    transform: translateY(10px);
}

/* Channel Preview Grid */
.channel-preview-grid {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    z-index: 10;
}

.preview-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    cursor: pointer;
}

.preview-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.preview-logo {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
}

.preview-item span {
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
}

/* Particles Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    filter: blur(0.5px);
}

.floating-tv {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-play {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-globe {
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

.floating-wifi {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Enhanced Live Indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-glow);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.live-text {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.live-viewers {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.viewer-count {
    color: var(--success-color);
    font-weight: 700;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.badge-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: rgba(37, 99, 235, 0.15);
}

.badge-item i {
    font-size: 1rem;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Button */
.pulse-btn {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% {
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(37, 99, 235, 0.5);
    }
    100% {
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    }
}

/* Stats Counter */
.hero-stats {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Image Container */
.image-container {
    position: relative;
}

.main-image {
    position: relative;
    z-index: 2;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.floating-card {
    position: absolute;
    background: rgba(248, 250, 252, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation: float-card 4s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: -5%;
    animation: float-card 4s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 10%;
    right: -15%;
    animation: float-card 4s ease-in-out infinite 2s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ===== Trust Badges Section ===== */
.trust-badges {
    background: var(--dark-secondary);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    z-index: 10;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-lg);
}

.trust-item i {
    font-size: 2rem;
    opacity: 0.8;
}

.trust-item strong {
    font-size: 1.5rem;
    color: var(--text-light);
    display: block;
    line-height: 1;
}

.trust-item small {
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ===== Package Cards ===== */
.package-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.package-card.featured::before {
    background: var(--gradient-secondary);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.package-duration {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #25d366;
    font-size: 0.9rem;
}

/* ===== Live Demo Section ===== */
.demo-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.demo-screen {
    background: var(--dark-secondary);
    border-radius: 20px;
    overflow: hidden;
}

.demo-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-controls {
    display: flex;
    gap: 0.5rem;
}

.demo-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.demo-controls span:nth-child(1) {
    background: #ff5f56;
}

.demo-controls span:nth-child(2) {
    background: #ffbd2e;
}

.demo-controls span:nth-child(3) {
    background: #27c93f;
}

.demo-title {
    color: var(--text-light);
    font-weight: 600;
    margin-left: auto;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 400px;
}

.demo-channels {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.demo-channel:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.demo-channel.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-color);
}

.channel-logo {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.channel-info h6 {
    margin: 0;
    color: var(--text-light);
    font-weight: 600;
}

.channel-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.channel-quality {
    margin-left: auto;
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
}

.demo-player {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
}

.player-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.player-screen:hover {
    color: var(--primary-color);
}

.player-screen i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.player-controls i {
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.player-controls i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ===== IPTV Features Section ===== */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

.feature-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== Enhanced Demo Section ===== */
.demo-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.demo-screen {
    background: var(--dark-secondary);
    border-radius: 20px;
    overflow: hidden;
    min-height: 600px;
}

.demo-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 500px;
}

.demo-sidebar {
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-menu {
    padding: 1rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.menu-item:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--text-light);
}

.menu-item.active {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
}

.menu-item i {
    font-size: 1.2rem;
}

.demo-main {
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.demo-view {
    height: 100%;
    padding: 1.5rem;
}

.channel-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.channel-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.channel-item.active {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
}

.channel-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
}

.channel-info h6 {
    margin: 0;
    color: var(--text-light);
    font-weight: 600;
}

.channel-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.player-screen {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.now-playing {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.channel-info-large {
    color: var(--text-light);
}

.channel-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 1rem;
}

.player-controls i {
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.player-controls i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* EPG Guide Styles */
.epg-guide {
    height: 100%;
    overflow-y: auto;
}

.epg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.epg-header h5 {
    color: var(--text-light);
    margin: 0;
}

.epg-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.epg-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.timeline-item.current {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
}

.time {
    min-width: 80px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.program h6 {
    margin: 0;
    color: var(--text-light);
    font-weight: 600;
}

.program p {
    margin: 0.25rem 0 0 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* VOD Library Styles */
.vod-library {
    height: 100%;
    overflow-y: auto;
}

.vod-header {
    margin-bottom: 1.5rem;
}

.vod-header h5 {
    color: var(--text-light);
    margin: 0 0 1rem 0;
}

.vod-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.category-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
}

.category-tag.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.vod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.vod-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.vod-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.vod-thumbnail {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.vod-item h6 {
    color: var(--text-light);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
}

.vod-item p {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0;
}

/* ===== Special Offer Banner ===== */
.special-offer {
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.offer-banner {
    position: relative;
    z-index: 2;
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.offer-timer {
    text-align: center;
}

.offer-label {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    gap: 1rem;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 10px;
    min-width: 60px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.offer-text h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* ===== Package Toggle ===== */
.package-toggle {
    display: flex;
    justify-content: center;
}

.toggle-buttons {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 0.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.toggle-btn:hover {
    color: var(--text-light);
}

.toggle-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

/* ===== Channel Preview ===== */
.channel-preview {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.preview-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.preview-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.preview-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
}

.preview-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.channel-preview-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.channel-preview-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.channel-preview-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.channel-preview-item h6 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.channel-preview-item p {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0;
}

/* ===== Enhanced Category Cards ===== */
.channel-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover .channel-logo-img {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-card > * {
    position: relative;
    z-index: 2;
}

.channel-count {
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* ===== Enhanced Device Cards ===== */
.device-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.device-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.device-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.device-card:hover::before {
    opacity: 0.05;
}

.device-card > * {
    position: relative;
    z-index: 2;
}

.device-check {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.device-card:hover .device-check {
    opacity: 1;
    transform: scale(1);
}

/* ===== FAQ Accordion ===== */
.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    border: none;
    padding: 1.25rem;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: transparent;
    color: var(--text-muted);
    padding: 1.25rem;
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.stars i {
    margin-right: 0.25rem;
}

.testimonial-card img {
    border: 2px solid var(--primary-color);
}

/* ===== Contact Section ===== */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    height: 100%;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.contact-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.contact-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    color: white;
}

/* ===== Footer ===== */
footer {
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

footer a {
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 1.2rem;
}

footer a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== Loading States ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ===== Selection Styling ===== */
::selection {
    background: var(--primary-color);
    color: var(--dark-bg);
}

/* ===== Focus States ===== */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== Reseller Section Styles ===== */
#reseller {
    background-color: var(--dark-secondary) !important;
}

#reseller h2,
#reseller .display-5 {
    color: var(--text-light) !important;
}

#reseller .lead,
#reseller p {
    color: var(--text-muted) !important;
}

#reseller .lead {
    color: var(--accent-color) !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    animation: glow 2s ease-in-out infinite alternate !important;
}

@keyframes glow {
    from {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 107, 53, 0.3);
    }
    to {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 53, 0.5);
    }
}

#reseller h3 {
    color: var(--primary-color) !important;
}

.reseller-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.reseller-card-visual {
    background: linear-gradient(135deg, var(--gradient-primary));
    border-radius: 20px;
    padding: 2rem;
    color: white;
    box-shadow: var(--shadow-xl);
    max-width: 350px;
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.reseller-card-visual:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.reseller-card-visual .card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reseller-card-visual .card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reseller-card-visual .card-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.profit-display {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.profit-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.profit-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.25rem;
}

.profit-period {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
}

.reseller-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reseller-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.reseller-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.reseller-features .feature-item i {
    font-size: 1.2rem;
}

.reseller-features .feature-item span {
    font-weight: 500;
}

.reseller-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.benefit-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.reseller-package {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--primary-color);
    position: relative;
}

.package-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--warning-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.reseller-package .package-header h3 {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, var(--accent-color), var(--warning-color)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3) !important;
    animation: premiumGlow 3s ease-in-out infinite alternate !important;
    position: relative !important;
}

@keyframes premiumGlow {
    from {
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    }
    to {
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
    }
}

.reseller-package .package-header h3::before {
    content: '⭐';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.2); }
}

.reseller-package .package-header h3::after {
    content: '⭐';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite 0.5s;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.package-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
}

.package-price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.package-content {
    padding: 2rem;
}

.package-features {
    margin-bottom: 2rem;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--dark-secondary);
}

.feature-name i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-value {
    font-weight: 700;
    color: var(--success-color);
    font-size: 1.1rem;
}

.package-steps {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.package-steps h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-text {
    color: var(--dark-secondary);
    font-weight: 500;
}

.package-cta {
    text-align: center;
}

.reseller-whatsapp-btn {
    background: var(--success-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.3);
}

.reseller-whatsapp-btn:hover {
    background: #15803d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
}

/* Responsive Styles for Reseller Section */
@media (max-width: 768px) {
    .reseller-card-visual {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .benefit-icon {
        margin: 0 auto 1rem;
    }
    
    .package-header h3 {
        font-size: 1.5rem;
    }
    
    .package-price .price {
        font-size: 2rem;
    }
    
    .feature-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .steps {
        gap: 0.75rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ===== Channel Logo Styling ===== */
.channel-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.channel-logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    min-height: 60px;
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.category-icon i:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== Professional Contact Section ===== */
.contact-container {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(201, 14, 14, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.header-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-header h3 {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.whatsapp-card::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.email-card::before {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.card-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.email-icon {
    background: var(--gradient-primary);
    box-shadow: 0 5px 20px rgba(201, 14, 14, 0.3);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: white;
}

.card-content h4 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-number,
.contact-email {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.availability {
    display: block;
    color: var(--success-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.whatsapp-btn,
.email-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.email-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 5px 20px rgba(201, 14, 14, 0.3);
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 14, 14, 0.4);
    color: white;
}

.contact-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.response-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-item span {
    font-size: 0.95rem;
}

/* ===== FAQ Section Enhancement ===== */
#faq h2.display-5 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    text-shadow: 0 4px 8px rgba(201, 14, 14, 0.3) !important;
    animation: faqGlow 4s ease-in-out infinite alternate !important;
    position: relative !important;
    margin-bottom: 1rem !important;
}

@keyframes faqGlow {
    from {
        filter: brightness(1) drop-shadow(0 0 15px rgba(201, 14, 14, 0.4));
    }
    to {
        filter: brightness(1.3) drop-shadow(0 0 30px rgba(201, 14, 14, 0.7));
    }
}

#faq .lead {
    color: var(--accent-color) !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    animation: faqSubtitleGlow 3s ease-in-out infinite alternate !important;
}

@keyframes faqSubtitleGlow {
    from {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 107, 53, 0.3);
    }
    to {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 53, 0.5);
    }
}

#faq h2.display-5::before {
    content: '❓';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: questionBounce 2s ease-in-out infinite;
}

@keyframes questionBounce {
    0%, 100% { transform: translateY(-50%) scale(1) rotate(0deg); }
    25% { transform: translateY(-60%) scale(1.1) rotate(-5deg); }
    75% { transform: translateY(-40%) scale(1.1) rotate(5deg); }
}

/* ===== Device Compatibility Section Enhancement ===== */
#devices h2.display-5 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    text-shadow: 0 4px 8px rgba(201, 14, 14, 0.3) !important;
    animation: deviceGlow 4s ease-in-out infinite alternate !important;
    position: relative !important;
    margin-bottom: 1rem !important;
}

@keyframes deviceGlow {
    from {
        filter: brightness(1) drop-shadow(0 0 15px rgba(201, 14, 14, 0.4));
    }
    to {
        filter: brightness(1.3) drop-shadow(0 0 30px rgba(201, 14, 14, 0.7));
    }
}

#devices .lead {
    color: var(--accent-color) !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    animation: deviceSubtitleGlow 3s ease-in-out infinite alternate !important;
}

@keyframes deviceSubtitleGlow {
    from {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 107, 53, 0.3);
    }
    to {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 53, 0.5);
    }
}

#devices h2.display-5::before {
    content: '📱';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: deviceFloat 3s ease-in-out infinite;
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(-50%) scale(1) rotate(0deg); }
    50% { transform: translateY(-60%) scale(1.1) rotate(5deg); }
}

.device-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 20px !important;
    padding: 2rem 1rem !important;
    transition: var(--transition) !important;
    position: relative !important;
    overflow: hidden !important;
}

.device-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.device-card:hover {
    transform: translateY(-10px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(201, 14, 14, 0.3) !important;
    border-color: var(--accent-color) !important;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(201, 14, 14, 0.05)) !important;
}

.device-card i {
    font-size: 3rem !important;
    color: var(--primary-color) !important;
    margin-bottom: 1rem !important;
    transition: var(--transition) !important;
    filter: drop-shadow(0 4px 8px rgba(201, 14, 14, 0.3)) !important;
}

.device-card:hover i {
    color: var(--accent-color) !important;
    transform: scale(1.2) rotate(5deg) !important;
    filter: drop-shadow(0 6px 12px rgba(255, 107, 53, 0.5)) !important;
}

.device-card h5 {
    color: var(--text-light) !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
    transition: var(--transition) !important;
}

.device-card:hover h5 {
    color: var(--accent-color) !important;
    transform: translateY(-2px) !important;
}

.device-card .device-check {
    color: var(--success-color) !important;
    font-size: 1.5rem !important;
    animation: checkPulse 2s ease-in-out infinite !important;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.device-card:hover .device-check {
    color: var(--accent-color) !important;
    transform: scale(1.3) !important;
}

/* ===== Packages Section Layout Fix ===== */
#packages .row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
}

#packages .col-lg-4 {
    flex: 0 0 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
}

#packages .package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-features {
    flex: 1;
    margin-bottom: auto !important;
}

/* ===== Enhanced WhatsApp Order Buttons ===== */
.whatsapp-order-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border: none !important;
    padding: 1rem 2rem !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    border-radius: 50px !important;
    color: white !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.whatsapp-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.whatsapp-order-btn:hover::before {
    left: 100%;
}

.whatsapp-order-btn:hover {
    background: linear-gradient(135deg, #128C7E, #0E5F54) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6) !important;
    color: white !important;
}

.whatsapp-order-btn:active {
    transform: translateY(-1px) scale(1.01) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
}

.whatsapp-order-btn i {
    font-size: 1.3rem !important;
    animation: whatsappIconPulse 2s ease-in-out infinite !important;
}

@keyframes whatsappIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.whatsapp-order-btn:hover i {
    animation: whatsappIconSpin 0.5s ease-in-out !important;
}

@keyframes whatsappIconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.2); }
    100% { transform: rotate(0deg) scale(1.1); }
}

/* Featured package button special styling */
.package-card.featured .whatsapp-order-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4) !important;
    animation: featuredButtonGlow 2s ease-in-out infinite alternate !important;
}

@keyframes featuredButtonGlow {
    from {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
    to {
        box-shadow: 0 8px 35px rgba(255, 215, 0, 0.7);
    }
}

.package-card.featured .whatsapp-order-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00) !important;
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6) !important;
}

/* Button ripple effect */
.whatsapp-order-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-order-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    #packages .col-lg-4 {
        flex: 0 0 calc(33.333% - 1.33rem);
        max-width: calc(33.333% - 1.33rem);
    }
    
    #packages .row > .col-lg-4:nth-child(4) {
        display: none;
    }
}

@media (max-width: 992px) {
    #packages .col-lg-4 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    #packages .row {
        flex-direction: column;
        align-items: center;
    }
    
    #packages .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    
    #packages .row > .col-lg-4:nth-child(4) {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .response-info {
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
