/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors */
    --primary-color: #00d4ff;
    --secondary-color: #0099ff;
    --accent-color: #ff3366;
    --bg-dark: #0a0e27;
    --bg-darker: #050814;
    --bg-card: #151932;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1), 0 0 0 20px rgba(37, 211, 102, 0.05);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Float Mobile */
@media (max-width: 968px) {
    .whatsapp-float {
        bottom: 90px;
        left: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float i {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 80px;
        left: 15px;
        width: 54px;
        height: 54px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo i {
    color: var(--primary-color);
    font-size: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-contact {
    background: var(--gradient-2);
    padding: 8px 20px;
    border-radius: 25px;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    animation: kenburns 20s infinite alternate;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 12, 36, 0.6) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.2s ease-out;
}

.slide-subtitle {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.4s ease-out;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Info Banner */
.info-banner {
    background: var(--bg-card);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.banner-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.banner-text strong {
    color: var(--text-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary-color);
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    background: var(--bg-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Installation Section ===== */
.installation {
    padding: 100px 0;
    background: var(--bg-dark);
}

.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition);
    text-align: center;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(0, 212, 255, 0.1);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.step-link:hover {
    gap: 12px;
}

.step-info {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
    margin-top: 10px;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 100px 0;
    background: var(--bg-darker);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.price-card {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: visible;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: var(--transition);
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.price-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-3);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
    background: transparent !important;
}

.price-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Box Styling */
.product-box {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 30px;
    position: relative;
}

.product-visual {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #3b82f6 100%);
    border-radius: 16px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
    transition: all 0.4s ease;
    min-height: 280px;
}

.product-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.product-logo-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.product-logo-circle img {
    width: 70px;
    height: auto;
    filter: brightness(1.2);
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.product-code {
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.price-card:hover .product-visual {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 80px rgba(168, 85, 247, 0.5);
}

.price-card:hover .product-logo-circle {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.currency {
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.amount {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
}

.price-save {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: var(--primary-color);
    font-size: 18px;
}

.price-card .btn {
    width: 100%;
    justify-content: center;
}

/* ===== Fullscreen Carousel ===== */
.fullscreen-carousel {
    width: 100%;
    overflow: hidden;
    background: var(--bg-darker);
    padding: 0;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-item {
    flex: 0 0 auto;
    width: 100vw;
    height: 80vh;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-card);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.about-content strong {
    color: var(--text-primary);
}

.about-content .btn {
    margin-top: 20px;
}

/* Movies Section */
.movies-section {
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.movies-carousel {
    margin-top: 60px;
    overflow: hidden;
}

.movies-track {
    display: flex;
    gap: 30px;
    animation: scrollMovies 40s linear infinite;
    width: fit-content;
}

.movies-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMovies {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.movie-card {
    flex: 0 0 auto;
    width: 250px;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.movie-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
}

.movie-card:hover::after {
    opacity: 1;
}

.movie-card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
}

.movie-card:hover img {
    transform: scale(1.1);
}

/* TV Gallery */
.tv-gallery {
    padding: 100px 0;
    background: var(--bg-darker);
}

.tv-carousel-wrapper {
    margin-top: 60px;
    overflow: hidden;
}

.tv-carousel-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: fit-content;
}

.tv-carousel-track:hover {
    animation-play-state: paused;
}

.tv-slide {
    flex: 0 0 auto;
    width: 90vw;
    max-width: 1200px;
    margin: 0 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.tv-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.tv-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.tv-slide:hover img {
    transform: scale(1.05);
}

.text-center {
    text-align: center;
}

/* ===== CTA Section ===== */
.cta {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
    font-size: 18px;
}

.social-links a:hover {
    background: var(--gradient-2);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

/* ===== Animations ===== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Slider Mobile */
    .hero-slider {
        height: 100vh;
        min-height: 600px;
    }
    
    .slide {
        background-position: center;
        background-size: cover;
    }
    
    .slide-content {
        padding: 0 25px;
    }
    
    .slide-title {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 18px;
        text-align: center;
    }
    
    .slide-subtitle {
        font-size: 19px;
        margin-bottom: 35px;
        text-align: center;
    }
    
    .slide-content .btn {
        display: inline-flex;
        margin: 0 auto;
    }
    
    .slider-dots {
        bottom: 30px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
    
    /* Info Banner Mobile */
    .info-banner {
        padding: 30px 0;
    }
    
    .banner-text {
        font-size: 16px;
    }
    
    /* Sections Padding */
    .features,
    .installation,
    .pricing,
    .about-section,
    .movies-section,
    .tv-gallery,
    .cta {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    /* Carousel Mobile */
    .carousel-item {
        height: 50vh;
        min-height: 350px;
    }
    
    /* About Section Mobile */
    .about-content p {
        font-size: 16px;
    }
    
    /* Movies Mobile */
    .movie-card {
        width: 150px;
    }
    
    .movie-card img {
        height: 220px;
    }
    
    .movies-track {
        gap: 20px;
    }
    
    /* TV Gallery Mobile */
    .tv-slide {
        width: 95vw;
        margin: 0 10px;
    }
    
    /* Installation Mobile */
    .installation-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-card {
        padding: 30px 25px;
    }
    
    .step-number {
        font-size: 60px;
        top: -15px;
        right: 20px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    /* Pricing Mobile */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .price-card {
        padding: 35px 25px;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .product-box {
        max-width: 280px;
    }
    
    .product-visual {
        padding: 40px 25px;
        min-height: 250px;
    }
    
    .product-logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .product-logo-circle img {
        width: 60px;
    }
    
    .product-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .product-code {
        font-size: 40px;
    }
    
    .amount {
        font-size: 48px;
    }
    
    .popular-badge {
        padding: 5px 35px;
        font-size: 11px;
    }
    
    /* CTA Mobile */
    .cta h2 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .cta p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navbar Mobile */
    .navbar {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Hero Slider Small Mobile */
    .hero-slider {
        min-height: 550px;
    }
    
    .slide-title {
        font-size: 34px;
        line-height: 1.2;
        text-align: center;
    }
    
    .slide-subtitle {
        font-size: 17px;
        margin-bottom: 28px;
        text-align: center;
    }
    
    .btn {
        padding: 13px 26px;
        font-size: 15px;
        gap: 8px;
        white-space: nowrap;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .scroll-indicator {
        font-size: 20px;
        bottom: 20px;
    }
    
    /* Info Banner Small Mobile */
    .banner-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* Sections Small Mobile */
    .features,
    .installation,
    .pricing,
    .about-section,
    .movies-section,
    .tv-gallery,
    .cta {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    /* Feature Cards Small Mobile */
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    /* Carousel Small Mobile */
    .carousel-item {
        height: 40vh;
        min-height: 300px;
    }
    
    /* About Section Small Mobile */
    .about-content p {
        font-size: 15px;
    }
    
    /* Movies Small Mobile */
    .movie-card {
        width: 130px;
    }
    
    .movie-card img {
        height: 190px;
    }
    
    .movies-track {
        gap: 15px;
    }
    
    /* TV Gallery Small Mobile */
    .tv-slide {
        width: 98vw;
        margin: 0 5px;
        border-radius: 15px;
    }
    
    /* Installation Small Mobile */
    .step-card {
        padding: 25px 20px;
    }
    
    .step-number {
        font-size: 50px;
        top: -12px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .step-card h3 {
        font-size: 20px;
    }
    
    .step-card p {
        font-size: 14px;
    }
    
    /* Pricing Small Mobile */
    .price-card {
        padding: 30px 20px;
    }
    
    .price-header h3 {
        font-size: 20px;
    }
    
    .product-box {
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .product-visual {
        padding: 35px 20px;
        min-height: 240px;
    }
    
    .product-logo-circle {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }
    
    .product-logo-circle img {
        width: 50px;
    }
    
    .product-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .product-code {
        font-size: 36px;
    }
    
    .amount {
        font-size: 42px;
    }
    
    .price-features li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .popular-badge {
        padding: 5px 30px;
        font-size: 10px;
    }
    
    /* CTA Small Mobile */
    .cta h2 {
        font-size: 28px;
    }
    
    .cta p {
        font-size: 16px;
    }
    
    /* Footer Small Mobile */
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 14px;
    }
    
    .footer-logo-img {
        height: 45px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
}

/* Extra Small Devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-slider {
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 30px;
        text-align: center;
    }
    
    .slide-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }
    
    .movie-card {
        width: 120px;
    }
    
    .movie-card img {
        height: 175px;
    }
    
    .amount {
        font-size: 38px;
    }
    
    .info-banner {
        padding: 25px 0;
    }
    
    .banner-text {
        font-size: 13px;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Cookie Consent ===== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    max-width: 600px;
    width: calc(100% - 40px);
    background: rgba(21, 25, 50, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 212, 255, 0.2);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.5s ease;
    opacity: 0;
}

.cookie-consent.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-content h3::before {
    content: '🍪';
    font-size: 24px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.cookie-content p strong {
    color: var(--text-primary);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.btn-cookie {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-customize {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-customize:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-reject {
    background: rgba(255, 51, 102, 0.1);
    color: #ff3366;
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.btn-reject:hover {
    background: rgba(255, 51, 102, 0.2);
    border-color: #ff3366;
    transform: translateY(-2px);
}

.btn-accept {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-accept:hover {
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.cookie-footer {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-footer strong {
    color: var(--primary-color);
}

/* Cookie Consent Mobile */
@media (max-width: 968px) {
    .cookie-consent {
        bottom: 12px;
        width: calc(100% - 24px);
        padding: 22px;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .cookie-content h3 {
        font-size: 19px;
    }
    
    .cookie-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .cookie-buttons {
        gap: 10px;
    }
    
    .btn-cookie {
        min-width: 110px;
        padding: 12px 18px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .cookie-consent {
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 18px;
        border-radius: 12px;
        max-height: 90vh;
    }
    
    .cookie-content h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .cookie-content h3::before {
        font-size: 18px;
    }
    
    .cookie-content p {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-cookie {
        width: 100%;
        min-width: auto;
        padding: 13px 20px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .cookie-footer {
        font-size: 11px;
        padding-top: 10px;
    }
}

@media (max-width: 375px) {
    .cookie-consent {
        padding: 16px;
        bottom: 8px;
        width: calc(100% - 16px);
    }
    
    .cookie-content h3 {
        font-size: 16px;
    }
    
    .cookie-content p {
        font-size: 12px;
        margin-bottom: 14px;
    }
    
    .btn-cookie {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .cookie-footer {
        font-size: 10px;
    }
}

/* ===== Performance Optimizations ===== */
.hero,
.features,
.installation,
.pricing,
.cta,
.footer {
    will-change: auto;
}

button,
a,
.btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Better touch targets for mobile */
@media (pointer: coarse) {
    .btn,
    .btn-cookie,
    .nav-links a,
    .btn-contact {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
    }
    
    .social-links a {
        min-width: 48px;
        min-height: 48px;
    }
    
    .whatsapp-float {
        min-height: 56px;
        min-width: 56px;
    }
    
    /* Improve tap target spacing on mobile */
    .pricing-cards,
    .features-grid,
    .installation-steps {
        gap: 25px;
    }
    
    /* Better spacing for mobile readability */
    .price-features li,
    .feature-card p,
    .step-card p {
        font-size: 15px;
        line-height: 1.6;
    }
}

