﻿/* ============================================
   SUNSET GLOW THEME - IPTV WEBSITE
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

:root {
    /* Primary Colors */
    --primary-orange: #F97316;
    --deep-orange: #EA580C;
    --secondary-amber: #FB923C;
    
    /* Background Colors */
    --main-bg: #1C1917;
    --surface: #292524;
    --surface-light: #3F3937;
    --surface-elevated: #57534E;
    
    /* Accent & Status Colors */
    --accent-rose: #F43F5E;
    --success-green: #84CC16;
    --warning-amber: #FCD34D;
    --error-red: #EF4444;
    
    /* Text Colors */
    --text-primary: #FAFAF9;
    --text-secondary: #D6D3D1;
    --text-tertiary: #A8A29E;
    --text-disabled: #78716C;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
    --space-2xl: 32px;
    --space-3xl: 48px;
    --space-4xl: 64px;
    --space-5xl: 96px;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lexend', sans-serif;
    
    /* Transitions */
    --transition-standard: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-decelerate: cubic-bezier(0, 0, 0.2, 1);
    --transition-accelerate: cubic-bezier(0.4, 0, 1, 1);
    --transition-sharp: cubic-bezier(0.4, 0, 0.6, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--main-bg);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 300ms var(--transition-standard);
    padding-top: 24px;
}

.header.scrolled {
    background: rgba(41, 37, 36, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-light);
    padding-top: 12px;
}

.navbar {
    height: 72px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.logo {
    position: absolute;
    left: 0;
}

.logo img {
    height: 50px;
    transition: transform 300ms var(--transition-standard);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-btn-container {
    position: absolute;
    right: 0;
}

.mobile-menu-header,
.nav-separator {
    display: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    transition: color 300ms var(--transition-standard);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 300ms var(--transition-standard);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 300ms var(--transition-standard);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 300ms var(--transition-standard);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 300ms var(--transition-standard);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--text-primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full-width {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    padding-top: 60px; /* Slight top padding as requested */
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title-animate {
    animation: fadeUpSlide 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

.typewriter-text {
    color: var(--primary-orange);
}

.cursor {
    color: var(--primary-orange);
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    font-weight: 400;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes fadeUpSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroShine {
    to {
        background-position: 200% center;
    }
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: #E5E5E5;
    margin-bottom: var(--space-3xl);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 800ms var(--transition-decelerate) 200ms backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    animation: fadeInUp 800ms var(--transition-decelerate) 400ms backwards;
}

/* ============================================
   COUNTER SECTION
   ============================================ */
.counter-section {
    padding: var(--space-xl) 0;
    background: var(--surface);
    border-bottom: 1px solid var(--surface-light);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.counter-item {
    text-align: center;
    padding: var(--space-lg);
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: var(--space-md);
}

.counter-number::after {
    content: '+';
}

.counter-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   LOGO SLIDER SECTION
   ============================================ */
.logo-slider-section {
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.logo-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    gap: var(--space-3xl);
    width: max-content;
    animation: scrollLogos 45s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    padding: var(--space-xl);
    background: var(--surface);
    border-radius: 12px;
    transition: all 300ms var(--transition-standard);
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
}

.logo-item img {
    display: block;
    width: 140px;
    height: 100px;
    object-fit: contain;
    transition: transform 300ms var(--transition-standard);
}

.logo-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: var(--space-4xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
}

.step-card {
    background: linear-gradient(145deg, var(--surface), #2a2624);
    padding: var(--space-3xl);
    border-radius: 24px;
    text-align: center;
    transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--surface-light);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-rose));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 400ms ease;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-orange);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 70px;
    height: 70px;
}

.step-title {
    margin-bottom: var(--space-lg);
}

.step-description {
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: var(--space-4xl) 0;
    background: var(--surface);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
}

.pricing-card {
    background: var(--main-bg);
    padding: var(--space-3xl);
    border-radius: 20px;
    border: 2px solid var(--surface-light);
    transition: all 300ms var(--transition-standard);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-orange);
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.3), 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(1.15);
    background: linear-gradient(180deg, #292524 0%, rgba(249, 115, 22, 0.15) 100%);
    z-index: 2;
    border-width: 2px;
}

.pricing-card.featured:hover {
    transform: scale(1.2) translateY(-12px);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.5), 0 30px 80px rgba(249, 115, 22, 0.4);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-rose));
    color: var(--text-primary);
    padding: 8px 24px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.pricing-title {
    color: var(--primary-orange);
    margin-bottom: var(--space-sm);
}

.pricing-subtitle {
    color: var(--text-tertiary);
    font-size: 14px;
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.price-currency {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-tertiary);
    vertical-align: super;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    color: var(--text-primary);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-2xl);
}

.pricing-features li {
    padding: var(--space-md) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 32px;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   MOVIES SLIDER SECTION
   ============================================ */
.movies-slider-section {
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.movies-slider {
    overflow: hidden;
    margin-top: var(--space-3xl);
    padding: 30px 0;
}

.movies-track {
    display: flex;
    gap: var(--space-xl);
    width: max-content;
    animation: scrollMovies 60s linear infinite;
}

.movie-poster {
    flex-shrink: 0;
    width: 350px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 300ms var(--transition-standard);
}

.movie-poster:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
    padding: var(--space-4xl) 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    align-items: stretch;
}

.why-choose-item {
    background: linear-gradient(145deg, var(--surface), #1c1917);
    padding: var(--space-xl);
    border-radius: 8px;
    border: 1px solid var(--surface-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px var(--space-lg);
    align-items: start;
    position: relative;
    overflow: hidden;
}



.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px) translateX(5px);
    border-color: var(--primary-orange);
    box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, var(--surface-elevated), #292524);
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-choose-header {
    display: contents; /* Remove wrapper behavior to let flex parent handle layout */
}

.why-choose-icon {
    grid-row: 1 / span 2;
    width: 56px;
    height: 56px;
    color: var(--primary-orange);
    flex-shrink: 0;
    background: rgba(249, 115, 22, 0.1);
    padding: 12px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: var(--primary-orange);
    color: var(--text-primary);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.why-choose-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
    align-self: center;
    padding-bottom: 4px;
}

.why-choose-item:hover .why-choose-title {
    color: var(--primary-orange);
}

.why-choose-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    padding-left: 0;
    position: relative;
    z-index: 1;
    grid-column: 2;
}

/* Removed unused center image styles */
.why-choose-center-image,
.pulse-loader,
.pulse-core,
.pulse-ring {
    display: none;
}

/* Responsive adjustments for Why Choose section */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-choose-center-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-4xl) 0;
    background: var(--surface);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.faq-item {
    background: linear-gradient(145deg, var(--surface), #1a1817);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--surface-light);
    transition: all 300ms var(--transition-standard);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-orange);
    opacity: 0;
    transition: opacity 300ms var(--transition-standard);
}

.faq-item:hover {
    border-color: var(--primary-orange);
    transform: translateX(5px);
    box-shadow: -5px 5px 15px rgba(0,0,0,0.3);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    padding: var(--space-xl);
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 300ms var(--transition-standard);
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-orange);
    transition: transform 300ms var(--transition-standard);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms var(--transition-standard);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--space-4xl) 0;
}

.testimonials-slider {
    position: relative;
    margin-top: var(--space-3xl);
}

.testimonials-container {
    display: flex;
    gap: var(--space-xl);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-xl) 0;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex-shrink: 0;
    width: 350px;
    min-height: 280px;
    background: linear-gradient(145deg, var(--surface), #2a2624);
    border-radius: 20px;
    padding: var(--space-2xl);
    border: 1px solid var(--surface-light);
    transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 120px;
    line-height: 1;
    font-family: serif;
    color: rgba(249, 115, 22, 0.1);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(249, 115, 22, 0.3);
    border-color: var(--primary-orange);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-rating {
    color: var(--warning-amber);
    font-size: 16px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms var(--transition-standard);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-orange);
    color: var(--text-primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: -24px;
}

.slider-btn.next {
    right: -24px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 140px 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
    animation: floatOrb 15s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section::before {
    background: radial-gradient(circle, var(--primary-orange), transparent 70%);
    top: -20%;
    left: -10%;
}

.cta-section::after {
    background: radial-gradient(circle, #db2777, transparent 70%); /* Rose color fallback */
    bottom: -20%;
    right: -10%;
    animation-delay: -7s;
    animation-direction: alternate-reverse;
}

.cta-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform: scale(0.9);
    opacity: 0;
    transition: all 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-content.visible {
    transform: scale(1);
    opacity: 1;
}

.cta-title {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: var(--space-xl);
    background: linear-gradient(to right, #FFFFFF 20%, #F97316 50%, #FFFFFF 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 4s linear infinite;
    letter-spacing: -2px;
    line-height: 1.1;
}

.cta-description {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--main-bg);
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--surface-light);
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 300ms var(--transition-standard);
}

.footer-link:hover {
    color: var(--primary-orange);
}

.footer-separator {
    color: var(--text-tertiary);
}

.footer-copyright {
    color: var(--text-tertiary);
    font-size: 14px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollMovies {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ============================================
   RESPONSIVE DESIGN - LARGE TABLET / LAPTOP
   ============================================ */
@media (max-width: 1368px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 160px 0 100px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 160px 0 100px;
    }

    .container {
        padding: 0 var(--space-xl);
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Navigation for Tablet & Mobile */
    .navbar {
        height: 60px;
    }

    .nav-content {
        justify-content: space-between;
    }

    .logo {
        position: static;
    }
    
    .logo img {
        height: 40px;
    }

    .nav-btn-container {
        position: static;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(28, 25, 23, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: var(--space-2xl);
        gap: var(--space-xl);
        transition: left 300ms var(--transition-standard);
        z-index: 2000;
        justify-content: flex-start;
        align-items: center;
        padding-top: 120px;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-header {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 40px;
        cursor: pointer;
        padding: 10px;
        line-height: 1;
    }

    .nav-separator {
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 10px 0;
    }
    
    .nav-btn-container {
        width: 100%;
    }
    
    .nav-btn-container .btn-primary {
        width: 100%;
        display: block;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .logo img {
        height: 30px;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .container {
        padding: 0 var(--space-lg);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .btn-large {
        width: 100%;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .logo-item {
        padding: var(--space-md);
    }
    
    .logo-item img {
        width: 100px;
        height: 75px;
    }
    
    .movie-poster {
        width: 260px;
        height: 370px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn.prev {
        left: 0;
    }
    
    .slider-btn.next {
        right: 0;
    }
    
    .testimonial-card {
        width: 260px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .footer-separator {
        display: none;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE (Samsung/iPhone)
   ============================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .pricing-card {
        padding: var(--space-lg);
    }
    
    /* Stack Why Choose Items vertically */
    .why-choose-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
        justify-items: center;
        gap: var(--space-md);
    }
    
    .why-choose-icon {
        grid-row: 1;
        margin-bottom: var(--space-xs);
    }
    
    .why-choose-title {
        grid-row: 2;
    }
    
    .why-choose-description {
        grid-row: 3;
        grid-column: 1;
        padding-left: 0;
    }
    
    /* Adjust buttons for small screens */
    .hero-buttons {
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
}

.mt-xl {
    margin-top: var(--space-xl);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    animation: none; /* Pause animation on hover */
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   CHATWAY WIDGET ALIGNMENT
   ============================================ */
/* Align Chatway chat widget with WhatsApp button */
iframe[src*="chatway"],
.chatway-widget,
.chatway-iframe {
    bottom: 30px !important;
}
