/*
Theme Name: Sky Sports IPTV
Theme URI: https://skysportsiptv.com
Author: Sky Sports IPTV
Author URI: https://skysportsiptv.com
Description: Sky Sports IPTV - Premium IPTV subscription service theme featuring Sky Sports channels, 47,000+ channels, 190,000+ VOD content, and comprehensive IPTV plans. Built for maximum SEO performance and Elementor Pro compatibility.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sky-sports-iptv
Tags: iptv, streaming, entertainment, one-page, custom-colors, custom-logo, featured-images, full-width-template, sticky-post, threaded-comments, translation-ready, elementor

This theme is designed specifically for IPTV service providers.
*/

/* =============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================= */
:root {
  --sky-blue: #0033A0;
  --sky-blue-dark: #002280;
  --sky-blue-light: #0044CC;
  --sky-red: #FF0000;
  --sky-dark: #1A1A2E;
  --sky-gray: #6C757D;
  --sky-light: #F8F9FA;
  --white: #FFFFFF;
  --black: #000000;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Spacing */
  --radius: 0.5rem;
  --section-padding: 5rem 0;
}

/* =============================================
   RESET & BASE STYLES
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: #1A1A2E;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.25;
}

p {
  margin: 0;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--sky-blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--sky-blue-dark); }

/* Selection */
::selection { background-color: rgba(0,51,160,0.3); }

/* Focus */
*:focus-visible { outline: 2px solid var(--sky-blue); outline-offset: 2px; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 3rem; } }

.section { padding: var(--section-padding); }

/* =============================================
   TYPOGRAPHY UTILITIES
   ============================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,51,160,0.1);
  color: var(--sky-blue);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--sky-dark);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--sky-blue);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--sky-gray);
  max-width: 42rem;
  margin: 0 auto;
}

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

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,51,160,0.1);
}

#masthead.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--sky-blue);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--sky-dark);
}

.logo-tagline {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--sky-blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Desktop Nav */
.primary-navigation {
  display: none;
}

@media (min-width: 1024px) {
  .primary-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.primary-navigation a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--sky-dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.primary-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky-blue);
  transition: width 0.3s ease;
}

.primary-navigation a:hover { color: var(--sky-blue); }
.primary-navigation a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-trial {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--sky-blue);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

@media (min-width: 640px) { .btn-trial { display: flex; } }

.btn-trial:hover {
  background: var(--sky-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,51,160,0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) { .menu-toggle { display: none; } }

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sky-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid rgba(0,51,160,0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 99;
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--sky-dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,51,160,0.08);
  text-decoration: none;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--sky-blue); }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--sky-dark);
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(0,51,160,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: #60A5FA;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sky-blue);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: var(--font-size-base);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--sky-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,51,160,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.hero-stat-label {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero Right Side - Movie Carousel */
.hero-visual {
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
    position: relative;
  }
}

.hero-movie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-movie-card {
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hero-movie-card:nth-child(2) { margin-top: 2rem; }
.hero-movie-card:nth-child(3) { margin-top: -2rem; }

.hero-movie-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.hero-movie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.hero-movie-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: white;
  background: var(--sky-blue);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
#features {
  padding: var(--section-padding);
  background: white;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: white;
  border: 1px solid rgba(0,51,160,0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sky-blue);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(0,51,160,0.3);
  box-shadow: 0 8px 30px rgba(0,51,160,0.12);
  transform: translateY(-4px);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(0,51,160,0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--sky-blue);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--sky-blue);
  transition: color 0.3s;
}

.feature-card:hover .feature-icon svg { color: white; }

.feature-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--sky-dark);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: var(--font-size-sm);
  color: var(--sky-gray);
  line-height: 1.6;
}

/* =============================================
   MOVIE / CONTENT CAROUSEL SECTION
   ============================================= */
#content-library {
  padding: var(--section-padding);
  background: var(--sky-light);
}

.content-header {
  text-align: center;
  margin-bottom: 3rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.movie-card {
  flex-shrink: 0;
  width: 200px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

@media (min-width: 640px) { .movie-card { width: 220px; } }
@media (min-width: 1024px) { .movie-card { width: 250px; } }

.movie-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.movie-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.movie-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 2rem 1rem 1rem;
}

.movie-badge {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: white;
  background: var(--sky-blue);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.movie-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: white;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--sky-blue);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,51,160,0.3);
}

.carousel-btn:hover {
  background: var(--sky-blue-dark);
  transform: scale(1.05);
}

/* Scrollable carousel on mobile */
.carousel-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.carousel-scroll::-webkit-scrollbar { display: none; }
.carousel-scroll .movie-card { scroll-snap-align: start; }

/* =============================================
   SPORTS SECTION
   ============================================= */
#sports {
  padding: var(--section-padding);
  background: var(--sky-dark);
  position: relative;
  overflow: hidden;
}

#sports::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,51,160,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.sports-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sports-header .section-title { color: white; }
.sports-header .section-subtitle { color: rgba(255,255,255,0.7); }

.sports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) { .sports-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sports-grid { grid-template-columns: repeat(4, 1fr); } }

.sport-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.sport-card:hover {
  background: rgba(0,51,160,0.3);
  border-color: rgba(0,51,160,0.5);
  transform: translateY(-4px);
}

.sport-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.sport-name {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.sport-channels {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.6);
}

/* Channels ticker */
.channels-ticker {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticker-label {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-align: center;
}

.ticker-track {
  display: flex;
  gap: 2rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-blue);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   STATISTICS SECTION
   ============================================= */
#statistics {
  padding: var(--section-padding);
  background: var(--sky-blue);
  position: relative;
  overflow: hidden;
}

#statistics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* =============================================
   PRICING SECTION
   ============================================= */
#pricing {
  padding: var(--section-padding);
  background: white;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  background: white;
  border: 2px solid rgba(0,51,160,0.1);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--sky-blue);
  box-shadow: 0 20px 40px rgba(0,51,160,0.15);
  transform: translateY(-4px);
}

.pricing-card.popular {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  transform: scale(1.02);
}

@media (min-width: 1024px) {
  .pricing-card.popular { transform: scale(1.05); }
}

.pricing-card.popular:hover {
  transform: scale(1.07);
}

.pricing-popular-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--sky-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-popular-badge svg {
  width: 1rem;
  height: 1rem;
  fill: white;
}

.pricing-header-card {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0,51,160,0.1);
}

.pricing-card.popular .pricing-header-card {
  border-bottom-color: rgba(255,255,255,0.2);
}

.pricing-duration {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-blue);
  margin-bottom: 0.5rem;
}

.pricing-card.popular .pricing-duration { color: rgba(255,255,255,0.8); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sky-dark);
}

.pricing-card.popular .pricing-currency { color: white; }

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--sky-dark);
  line-height: 1;
}

.pricing-card.popular .pricing-amount { color: white; }

.pricing-badge-text {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-top: 0.5rem;
  display: inline-block;
}

.pricing-features {
  flex: 1;
  padding: 1.5rem;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--font-size-xs);
  color: var(--sky-gray);
  margin-bottom: 0.75rem;
}

.pricing-card.popular .pricing-feature-item { color: rgba(255,255,255,0.9); }

.pricing-feature-icon {
  width: 1rem;
  height: 1rem;
  color: var(--sky-blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card.popular .pricing-feature-icon { color: rgba(255,255,255,0.9); }

.pricing-cta {
  padding: 1rem 1.5rem 1.5rem;
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-buy-default {
  background: var(--sky-blue);
  color: white;
}

.btn-buy-default:hover {
  background: var(--sky-blue-dark);
  transform: scale(1.02);
}

.btn-buy-popular {
  background: white;
  color: var(--sky-blue);
}

.btn-buy-popular:hover {
  background: #f0f4ff;
  transform: scale(1.02);
}

.pricing-instant {
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--sky-gray);
  margin-top: 0.5rem;
}

.pricing-card.popular .pricing-instant { color: rgba(255,255,255,0.7); }

/* =============================================
   FAQ SECTION
   ============================================= */
#faq {
  padding: var(--section-padding);
  background: var(--sky-light);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid rgba(0,51,160,0.1);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(0,51,160,0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--sky-dark);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--sky-blue); }

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--sky-blue);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

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

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: var(--font-size-sm);
  color: var(--sky-gray);
  line-height: 1.7;
  border-top: 1px solid rgba(0,51,160,0.08);
  padding-top: 1rem;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
#testimonials {
  padding: var(--section-padding);
  background: white;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--sky-light);
  border: 1px solid rgba(0,51,160,0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(0,51,160,0.2);
  box-shadow: 0 8px 25px rgba(0,51,160,0.08);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #FACC15;
  font-size: 1.125rem;
}

.testimonial-text {
  font-size: var(--font-size-sm);
  color: var(--sky-dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--sky-dark);
}

.author-location {
  font-size: var(--font-size-xs);
  color: var(--sky-gray);
}

/* =============================================
   CONTACT / CTA SECTION
   ============================================= */
#contact {
  padding: var(--section-padding);
  background: var(--sky-dark);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,51,160,0.4) 0%, transparent 70%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #22C55E;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: var(--font-size-base);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}

.btn-whatsapp:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.4);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .contact-info-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-info-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-info-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.contact-info-text {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.6);
}

/* =============================================
   FOOTER
   ============================================= */
#colophon {
  background: #0D0D1A;
  padding: 3rem 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: var(--font-size-xs);
  font-weight: 700;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--sky-blue);
  color: white;
}

.footer-col-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: white; }

/* =============================================
   CHANNEL LIST PAGE
   ============================================= */
.channel-list-hero {
  background: var(--sky-dark);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.channel-list-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/channel-list-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.channel-list-content {
  position: relative;
  z-index: 1;
}

.channel-list-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.channel-list-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.7);
}

.channel-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem 0;
}

@media (min-width: 640px) { .channels-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .channels-grid { grid-template-columns: repeat(4, 1fr); } }

.channel-item {
  background: white;
  border: 1px solid rgba(0,51,160,0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.2s;
}

.channel-item:hover {
  border-color: var(--sky-blue);
  box-shadow: 0 4px 15px rgba(0,51,160,0.15);
}

.channel-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--sky-dark);
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #22C55E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
  z-index: 50;
  text-decoration: none;
  transition: all 0.2s;
  animation: pulse-glow 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(34,197,94,0.5);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: white;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(34,197,94,0.4); }
  50% { box-shadow: 0 4px 30px rgba(34,197,94,0.6), 0 0 0 8px rgba(34,197,94,0.1); }
}

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

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

/* =============================================
   ELEMENTOR PRO COMPATIBILITY
   ============================================= */

/* Allow Elementor to override these base styles */
.elementor-section,
.elementor-container,
.elementor-row,
.elementor-column,
.elementor-widget {
  /* Elementor handles its own layout */
}

/* Ensure Elementor widgets inherit our fonts */
.elementor * {
  font-family: inherit;
}

/* Prevent theme from overriding Elementor buttons */
.elementor-button-wrapper .elementor-button {
  font-family: var(--font-sans);
}

/* Custom Elementor Global Colours support */
.e-global__color { /* Elementor global colours */ }

/* WordPress block editor compatibility */
.wp-block-image img { height: auto; }
.wp-block-group { margin: 0; padding: 0; }

/* =============================================
   WORDPRESS CORE STYLES
   ============================================= */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.wp-caption { max-width: 100%; }
.wp-caption img { display: block; }
.wp-caption-text { text-align: center; font-size: 0.875rem; color: var(--sky-gray); }

.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* Comments */
.comment-list { list-style: none; padding: 0; }
.comment-form input, .comment-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0,51,160,0.2);
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  margin-bottom: 1rem;
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 639px) {
  :root { --section-padding: 3.5rem 0; }
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
