/* Modern IPTV Website - Redesigned Styles */

:root {
    --primary: #023E8A;
    --primary-dark: #012A5E;
    --primary-light: #0353B8;
    --accent: #00B4D8;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --success: #10B981;
    --whatsapp: #25D366;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== Floating Contact Button ==================== */
.floating-contact {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 64px;
    height: 64px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.floating-contact svg {
    width: 32px;
    height: 32px;
}

.floating-contact:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

/* ==================== Navigation ==================== */
/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* CHANGED: Removed background, backdrop-filter, and box-shadow for full transparency */
    /* background: none; */
    /* backdrop-filter: none; */
    /* box-shadow: none; */
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    /* CHANGED: Restored a semi-opaque dark background for readability after scrolling past the hero */
    background: rgba(15, 23, 42, 0.9);
    /* CHANGED: Applied a very subtle shadow for a slight lift without a heavy border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); 
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 60px; 
    width: auto;
    transition: var(--transition);
}

.logo-svg:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    position: relative;
    transition: var(--transition);
    padding: 0px 10px;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-trial {
    background: var(--primary);
    color: var(--white);
    padding: 18px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-trial:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 200px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-track {
    display: flex;
    animation: heroBgScroll 60s linear infinite;
    height: 100%;
}

@keyframes heroBgScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-bg-image {
    min-width: 33.333%;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    opacity: 0;
    animation: fadeIn 0.6s ease 0.1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    max-width: 560px;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.3s forwards;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid var(--primary);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ==================== Stats Counter Section (Overlapping) ==================== */
.stats-counter {
    position: relative;
    margin-top: -120px;
    z-index: 100;
    padding: 0 24px 80px;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.5s forwards;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    border: none;
    position: relative;
    overflow: visible;
}

.stats-floating-icons {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    pointer-events: none;
    z-index: 10;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.floating-icon.icon-1 {
    top: -20px;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.floating-icon.icon-2 {
    top: 20px;
    right: 15%;
    animation: float 4s ease-in-out 1s infinite;
}

.floating-icon.icon-3 {
    bottom: 20px;
    left: 15%;
    animation: float 4s ease-in-out 2s infinite;
}

.floating-icon.icon-4 {
    bottom: -20px;
    right: 10%;
    animation: float 4s ease-in-out 3s infinite;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-badge {
    display: none;
}

.hero-stats {
    display: none;
}

/* =====================================================================
   HERO VISUAL SECTION (UPDATED FOR HIGH VISIBILITY PLAY BUTTON)
   ===================================================================== */

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 100;
    z-index: 100;
    /* Use slideUp for the "popping out" effect like the H1 */
    animation: slideUp 0.6s ease 0.4s forwards;
}

.hero-play-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 100;
}

/* =====================================================================
   PULSING RINGS (Fixed to start from button center/edge)
   ===================================================================== */

.play-button-ring {
    position: absolute;
    border-radius: 50%;
    /* Base size is the same as the button (300px) */
    width: 300px; 
    height: 300px;
    /* FIX 1: Anchor the element's top-left to the parent's center point */
    top: 45%; 
    left: 50%;
    /* High contrast white ring with moderate opacity */
    border: 3px solid rgba(255, 255, 255, 0.4); 
}

.play-button-ring.ring-1 {
    animation: pulse-ring 3s ease-out infinite;
}

.play-button-ring.ring-2 {
    animation: pulse-ring 3s ease-out 0.5s infinite;
}

.play-button-ring.ring-3 {
    animation: pulse-ring 3s ease-out 1s infinite;
}

@keyframes pulse-ring {
    0% {
        /* FIX 2: Shift back by 50% of the element's own size (for centering) 
           AND start the scale at 0 (for center-point origin) */
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        /* Maintain centering while scaling up */
        transform: translate(-50%, -50%) scale(1.5); 
        opacity: 0.6;
    }
    100% {
        /* Maintain centering while finishing the pulse and fading out */
        transform: translate(-50%, -50%) scale(2.0); 
        opacity: 0; 
    }
}

/* =====================================================================
   CENTER PLAY BUTTON (CRISP AND VISIBLE)
   ===================================================================== */

.play-btn {
    position: relative;
    /* YOUR CUSTOM SIZE */
    width: 300px; 
    height: 300px;
    border-radius: 50%;
    border: none;
    background: var(--primary); 
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(2, 62, 138, 0.8), 0 0 50px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    

}

.play-btn:hover {
    transform: scale(1.05); /* Reduced scale on hover for a large button */
    box-shadow: 0 0 40px rgba(2, 62, 138, 1.0), 0 0 60px rgba(0, 180, 216, 0.8);
}

.play-btn:active {
    transform: scale(1.02);
}

.play-btn svg {
    width: 200px;
    height: 200px;
    margin-left: 0; 
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}



.hero-icon {
    display: none;
}

.icon-1, .icon-2, .icon-3, .icon-4, .icon-5 {
    display: none;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.element-1 {
    width: 60px;
    height: 60px;
    background: rgba(2, 62, 138, 0.1);
    top: 20%;
    right: 10%;
    animation: pulse 4s ease-in-out infinite;
}

.element-2 {
    width: 80px;
    height: 80px;
    background: rgba(0, 180, 216, 0.1);
    bottom: 20%;
    right: 5%;
    animation: pulse 4s ease-in-out 1.5s infinite;
}

.element-3 {
    width: 40px;
    height: 40px;
    background: rgba(2, 62, 138, 0.15);
    top: 50%;
    left: 10%;
    animation: pulse 4s ease-in-out 2.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* ==================== Marquee Section ==================== */
.marquee-section {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    align-items: center;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.channel-logo {
    /* FIX: Set a fixed width (e.g., 120px) alongside the fixed height (50px) 
       to ensure all logos occupy a uniform 120x50 slot. */
    width: 200px; 
    height: 100px;
    
    /* object-fit: contain ensures the logo scales down to fit the slot 
       without being cropped, preserving its aspect ratio. */
    object-fit: contain;
    
    flex-shrink: 0;
    transition: var(--transition);
    filter: none;
    opacity: 1;
}

.channel-logo:hover {
    /* Retain the hover effect for visual feedback */
    transform: scale(1.1);
}

.channel-item {
    display: none;
}

/* ==================== Movies Poster Slider ==================== */
.movies-slider {
    padding: 80px 0 60px;
    background: var(--white);
    overflow: hidden;
}

.movies-track-container {
    margin-top: 60px;
    overflow: hidden;
    padding: 20px 0;
}

.movies-track {
    display: flex;
    gap: 24px;
    animation: moviesScroll 70s linear infinite;
    width: fit-content;
}

.movies-track:hover {
    animation-play-state: paused;
}

@keyframes moviesScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.movie-poster {
    width: 320px;
    height: 480px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.movie-poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(2, 62, 138, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

.movie-poster:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.movie-poster:hover::before {
    opacity: 1;
}

/* ==================== Features Section ==================== */
.features {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: rgba(2, 62, 138, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition);
    cursor: pointer;
    color: var(--white);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== How It Works Section ==================== */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.how-it-works .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.how-it-works .section-title {
    color: var(--white);
}

.how-it-works .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 0;
}

.step-item {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 50px 30px;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    z-index: 1;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(2, 62, 138, 0.15);
    border-color: var(--primary);
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(2, 62, 138, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
}

.step-connector {
    display: none;
}

/* ==================== Pricing Section ==================== */
.pricing {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.plan-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-price {
    margin-bottom: 32px;
}

.price {
    font-size: 5em;
    font-weight: 900;
    color: var(--white);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    flex-shrink: 0;
}

.subscribe-btn {
    display: block;
    width: 100%;
    background: var(--white);
    color: var(--primary);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.subscribe-btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== FAQ Section ==================== */
.faq {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq-content {
    max-width: 1280px;
    margin: 0 auto;
    /* BASE LAYOUT: Explicitly define the two-column grid */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    color: var(--white);
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--white);
    color: var(--primary);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 25px 28px 24px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== CTA Section ==================== */
.cta {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    display: none;
}

.cta::after {
    display: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    border-width: 2px;
}

.cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--gray-300);
    padding: 80px 30px 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
    
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}


.footer-logo-svg {
    height: 60px; 
    width: auto;
    
}

.footer-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-top: 16px;
}

.footer-heading {
    font-size: 23px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    padding: 0 0 0 50px;
}



.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 17px;
    transition: var(--transition);
    display: inline-block;
    padding: 0 0 0 50px;

}

.footer-link:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }


    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stats-counter {
        margin-top: -80px;
        padding: 0 24px 60px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 16px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .movies-slider {
        padding: 80px 0 60px;
    }

    .movie-poster {
        width: 260px;
        height: 390px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 300px;
    }

    .card-1,
    .card-2,
    .card-3 {
        width: 200px;
        height: 140px;
    }

    .features,
    .how-it-works,
    .pricing,
    .faq {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .steps-container::before {
        display: none;
    }

    .floating-contact {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .floating-contact svg {
        width: 28px;
        height: 28px;
    }

  .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    
    /* Reduces the logo size on mobile */
    .logo-svg {
        height: 32px; 
    }

    /* 1. Logo (Start Left) */
    .logo {
        grid-column: 1 / 2;
        justify-self: start;
    }
    
    /* Hide the main nav menu on mobile */
    .nav-menu {
        grid-column: 1 / -1;
    }
    
    /* 2. Mobile Toggle (Center) */
    .mobile-toggle {
        grid-column: 2 / 3;
        justify-self: center;
        display: flex;
        grid-row: 1;
    }
    
    .mobile-toggle span {
        background: var(--white); 
    }
    
    /* 3. Nav Actions / Free Trial Button (Right Side) */
    .nav-actions {
        grid-column: 3 / 4;
        justify-self: end;
        grid-row: 1;
    }
    
    .btn-trial {
        padding: 8px 16px; 
        font-size: 17px;
        white-space: nowrap;
    }

    /* HERO SECTION  */
    .hero-visual {
    height: 350px;
    }
    
    .play-btn {
        width: 200px; 
        height: 200px;
    }

    .play-btn svg {
        width: 120px;
        height: 120px;
    }
    
    .play-button-ring {
        width: 200px;
        height: 200px;
    }
    
    /* FAQ SECTION  */
    .faq-content {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center; 
        text-align: center; 
        gap: 40px;
    }
    
    .footer-links {
        align-items: center; 
    }

    .footer-link,
    .footer-heading {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 20px;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta .btn-primary,
    .cta .btn-secondary {
        width: 100%;
    }
}

/* ==================== Animations ==================== */
.scroll-reveal {
    opacity: 1;
}

.section-header {
    opacity: 1;
}

/* ==================== Utility Classes ==================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ==================== Page Header (Contact, etc.) ==================== */
.page-header {
    padding: 160px 0 80px;
    background: #0f172a;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-description {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== Contact Section ==================== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

/* Redesigned Contact Page Styles */
.contact-hero {
    padding: 180px 0 120px;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-options-container {
    max-width: 900px;
    margin: -60px auto 100px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.contact-option-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.contact-option-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--primary-light);
}

.contact-option-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.icon-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.icon-email {
    background: rgba(2, 62, 138, 0.1);
    color: var(--primary);
}

.contact-option-icon svg {
    width: 36px;
    height: 36px;
}

.contact-option-content {
    flex-grow: 1;
}

.contact-option-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.contact-option-desc {
    color: var(--gray-600);
    font-size: 1rem;
}

.contact-option-action {
    margin-left: 30px;
    flex-shrink: 0;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.action-btn-whatsapp {
    background: var(--primary);
    color: var(--white);
}

.action-btn-whatsapp:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(2, 62, 138, 0.3);
}

.action-btn-email {
    background: var(--primary);
    color: var(--white);
}

.action-btn-email:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(2, 62, 138, 0.3);
}

@media (max-width: 768px) {
    .contact-option-bar {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
    
    .contact-option-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .contact-option-action {
        margin-left: 0;
        margin-top: 24px;
        width: 100%;
    }
    
    .action-btn {
        width: 100%;
    }
}