/*
Theme Name: Abonnement Premium IPTV
Template: astra
Author: Your Name
Description: Custom child theme for Abonnement Premium IPTV - Dark theme with blue accents
Version: 1.0.0
Text Domain: abonnement-premium-iptv
*/

/* ============================================
   ROOT VARIABLES - DARK THEME COLORS
   ============================================ */
:root {
  --iptv-bg-primary: #0a0a0f;
  --iptv-bg-secondary: #12121a;
  --iptv-bg-card: #1a1a25;
  --iptv-bg-card-hover: #252535;
  
  --iptv-accent-primary: #6366f1;
  --iptv-accent-secondary: #8b5cf6;
  --iptv-accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --iptv-accent-glow: rgba(99, 102, 241, 0.3);
  
  --iptv-text-primary: #ffffff;
  --iptv-text-secondary: #a1a1aa;
  --iptv-text-muted: #71717a;
  
  --iptv-border-color: rgba(255, 255, 255, 0.1);
  --iptv-border-glow: rgba(99, 102, 241, 0.3);
  
  --iptv-success: #22c55e;
  --iptv-warning: #f59e0b;
  --iptv-danger: #ef4444;
  
  --iptv-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --iptv-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --iptv-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --iptv-shadow-glow: 0 0 30px rgba(99, 102, 241, 0.2);
  
  --iptv-radius-sm: 8px;
  --iptv-radius-md: 12px;
  --iptv-radius-lg: 16px;
  --iptv-radius-xl: 24px;
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
  background-color: var(--iptv-bg-primary);
  color: var(--iptv-text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.ast-container {
  max-width: 1200px;
}

/* Override Astra defaults */
.site-content {
  background-color: var(--iptv-bg-primary);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  background: rgba(10, 10, 15, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--iptv-border-color);
}

.site-header .site-title a {
  color: var(--iptv-text-primary) !important;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-title a::before {
  content: '📺';
  font-size: 1.75rem;
}

.main-header-menu .menu-link {
  color: var(--iptv-text-secondary) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-header-menu .menu-link:hover {
  color: var(--iptv-accent-primary) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.iptv-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    var(--iptv-bg-primary);
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.iptv-hero::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="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 50px 50px;
  pointer-events: none;
}

.iptv-hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.iptv-hero-subtitle {
  color: var(--iptv-accent-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.iptv-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.iptv-hero-title span {
  background: var(--iptv-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.iptv-hero-description {
  color: var(--iptv-text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.iptv-hero-description strong {
  color: var(--iptv-accent-primary);
}

.iptv-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--iptv-accent-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--iptv-radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--iptv-shadow-glow);
}

.iptv-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
  color: white;
}

/* Hero Image */
.iptv-hero-image {
  margin: 3rem auto;
  max-width: 600px;
  position: relative;
}

.iptv-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--iptv-radius-xl);
  box-shadow: var(--iptv-shadow-lg);
}

/* Navigation Grid */
.iptv-nav-grid {
  margin-top: 3rem;
}

.iptv-nav-grid-title {
  color: var(--iptv-text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.iptv-nav-grid-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.iptv-nav-item {
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-md);
  padding: 1.25rem;
  text-decoration: none;
  color: var(--iptv-text-primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.iptv-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--iptv-accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.iptv-nav-item:hover {
  border-color: var(--iptv-accent-primary);
  transform: translateY(-3px);
  box-shadow: var(--iptv-shadow-glow);
}

.iptv-nav-item:hover::before {
  opacity: 0.1;
}

.iptv-nav-item-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.iptv-nav-item-title {
  font-weight: 600;
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.iptv-nav-item-subtitle {
  color: var(--iptv-text-muted);
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}

.iptv-nav-item.badge-new {
  border-color: var(--iptv-accent-secondary);
}

.iptv-nav-item.badge-new::after {
  content: 'NOUVEAU';
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--iptv-accent-gradient);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.iptv-section {
  padding: 5rem 1rem;
  position: relative;
}

.iptv-section-alt {
  background: var(--iptv-bg-secondary);
}

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

.iptv-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.iptv-section-subtitle {
  color: var(--iptv-text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.iptv-pricing-card {
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-xl);
  padding: 2.5rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.iptv-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--iptv-accent-gradient);
}

.iptv-pricing-badge {
  display: inline-block;
  background: var(--iptv-accent-gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.iptv-pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.iptv-pricing-subtitle {
  color: var(--iptv-text-secondary);
  margin-bottom: 1.5rem;
}

.iptv-pricing-price {
  font-size: 3rem;
  font-weight: 800;
  background: var(--iptv-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.iptv-pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--iptv-text-muted);
  -webkit-text-fill-color: var(--iptv-text-muted);
}

.iptv-pricing-note {
  color: var(--iptv-text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.iptv-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.iptv-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--iptv-border-color);
  color: var(--iptv-text-secondary);
}

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

.iptv-pricing-features li::before {
  content: '✓';
  color: var(--iptv-success);
  font-weight: 700;
}

.iptv-pricing-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.iptv-pricing-form label {
  color: var(--iptv-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.iptv-pricing-form select {
  background: var(--iptv-bg-primary);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-md);
  padding: 1rem;
  color: var(--iptv-text-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.iptv-pricing-form select:focus {
  outline: none;
  border-color: var(--iptv-accent-primary);
}

.iptv-pricing-btn {
  background: var(--iptv-accent-gradient);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--iptv-radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.iptv-pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--iptv-shadow-glow);
}

/* ============================================
   CHANNELS SECTION
   ============================================ */
.iptv-channels-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.iptv-channel-category {
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-lg);
  padding: 1.5rem 2rem;
  min-width: 150px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.iptv-channel-category:hover {
  border-color: var(--iptv-accent-primary);
  transform: translateY(-3px);
  box-shadow: var(--iptv-shadow-glow);
}

.iptv-channel-category-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.iptv-channel-category-name {
  font-weight: 600;
  color: var(--iptv-text-primary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.iptv-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.iptv-feature-card {
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}

.iptv-feature-card:hover {
  border-color: var(--iptv-accent-primary);
  transform: translateY(-5px);
  box-shadow: var(--iptv-shadow-glow);
}

.iptv-feature-icon {
  width: 60px;
  height: 60px;
  background: var(--iptv-accent-gradient);
  border-radius: var(--iptv-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.iptv-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.iptv-feature-description {
  color: var(--iptv-text-secondary);
  font-size: 0.9375rem;
}

/* Device Compatibility */
.iptv-devices {
  margin-top: 4rem;
  text-align: center;
}

.iptv-devices-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.iptv-devices-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.iptv-device-item {
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--iptv-text-secondary);
  font-size: 0.875rem;
}

.iptv-device-item::before {
  content: '✓';
  color: var(--iptv-success);
  font-weight: 700;
}

/* Advanced Features */
.iptv-advanced-features {
  margin-top: 4rem;
}

.iptv-advanced-features h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.iptv-advanced-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.iptv-advanced-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--iptv-bg-card);
  border-radius: var(--iptv-radius-md);
  color: var(--iptv-text-secondary);
}

.iptv-advanced-item::before {
  content: '•';
  color: var(--iptv-accent-primary);
  font-size: 1.5rem;
  line-height: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.iptv-about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.iptv-about-intro {
  font-size: 1.25rem;
  color: var(--iptv-text-secondary);
  margin-bottom: 2rem;
}

.iptv-about-intro strong {
  color: var(--iptv-accent-primary);
}

.iptv-about-text {
  color: var(--iptv-text-secondary);
  margin-bottom: 3rem;
}

.iptv-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.iptv-stat-item {
  text-align: center;
}

.iptv-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--iptv-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.iptv-stat-label {
  color: var(--iptv-text-secondary);
  font-size: 0.875rem;
}

.iptv-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.iptv-value-item {
  text-align: center;
  padding: 2rem;
  background: var(--iptv-bg-card);
  border-radius: var(--iptv-radius-lg);
  border: 1px solid var(--iptv-border-color);
}

.iptv-value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.iptv-value-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.iptv-value-description {
  color: var(--iptv-text-secondary);
  font-size: 0.875rem;
}

/* ============================================
   OFFERS SECTION
   ============================================ */
.iptv-offers {
  background: var(--iptv-bg-secondary);
  position: relative;
  overflow: hidden;
}

.iptv-offers::before {
  content: '🎉 🎊 🎁 🎆 🎇 ✨ 🎈 🎄 🎃 🎅 🤶 🧑‍🎄 🎀 🎁 🎗️ 🏆 🥇 🥈 🥉 🏅 🎖️ 🎗️ 🎟️ 🎫 🎭 🎪 🎨 🎬 🎤 🎧 🎼 🎹 🥁 🎷 🎺 🎸 🎻 🪕 🎲 🎯 🎳 🎮 🎰 🎱 🎰 🎲 🎯 🎳 🎮 🎰';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 2rem;
  opacity: 0.05;
  word-wrap: break-word;
  pointer-events: none;
}

.iptv-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.iptv-offer-card {
  background: var(--iptv-bg-card);
  border: 2px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-xl);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.iptv-offer-card:hover {
  border-color: var(--iptv-accent-primary);
  transform: translateY(-5px);
  box-shadow: var(--iptv-shadow-glow);
}

.iptv-offer-card.featured {
  border-color: var(--iptv-accent-primary);
  background: linear-gradient(135deg, var(--iptv-bg-card) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.iptv-offer-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--iptv-accent-gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.iptv-offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.iptv-offer-price {
  font-size: 3rem;
  font-weight: 800;
  background: var(--iptv-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

.iptv-offer-price span {
  font-size: 1rem;
  font-weight: 500;
  -webkit-text-fill-color: var(--iptv-text-muted);
}

.iptv-offer-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.iptv-offer-features li {
  padding: 0.5rem 0;
  color: var(--iptv-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.iptv-offer-features li::before {
  content: '✓';
  color: var(--iptv-success);
  font-weight: 700;
}

.iptv-offer-btn {
  display: inline-block;
  background: var(--iptv-accent-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--iptv-radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.iptv-offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--iptv-shadow-glow);
  color: white;
}

/* ============================================
   APPLICATION SECTION
   ============================================ */
.iptv-app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.iptv-app-card {
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.iptv-app-card:hover {
  border-color: var(--iptv-accent-primary);
  transform: translateY(-5px);
}

.iptv-app-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.iptv-app-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.iptv-app-description {
  color: var(--iptv-text-secondary);
  font-size: 0.875rem;
}

/* Installation Steps */
.iptv-installation {
  background: var(--iptv-bg-card);
  border-radius: var(--iptv-radius-xl);
  padding: 3rem;
  margin-bottom: 4rem;
}

.iptv-installation-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.iptv-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.iptv-step {
  text-align: center;
  position: relative;
}

.iptv-step-number {
  width: 50px;
  height: 50px;
  background: var(--iptv-accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.iptv-step-text {
  color: var(--iptv-text-secondary);
  font-size: 0.9375rem;
}

/* Compatible Apps */
.iptv-compatible-apps {
  text-align: center;
}

.iptv-compatible-apps h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.iptv-apps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.iptv-app-tag {
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-md);
  padding: 0.75rem 1.25rem;
  color: var(--iptv-text-secondary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.iptv-app-tag:hover {
  border-color: var(--iptv-accent-primary);
  color: var(--iptv-text-primary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.iptv-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.iptv-testimonial-card {
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.iptv-testimonial-card:hover {
  border-color: var(--iptv-accent-primary);
  transform: translateY(-3px);
}

.iptv-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--iptv-accent-primary);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
}

.iptv-testimonial-text {
  color: var(--iptv-text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

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

.iptv-testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--iptv-accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.iptv-testimonial-name {
  font-weight: 600;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.iptv-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.iptv-faq-item {
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

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

.iptv-faq-question:hover {
  color: var(--iptv-accent-primary);
}

.iptv-faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--iptv-accent-primary);
  transition: transform 0.3s ease;
}

.iptv-faq-item.active .iptv-faq-question::after {
  transform: rotate(45deg);
}

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

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

.iptv-faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--iptv-text-secondary);
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.iptv-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.iptv-support-card {
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-lg);
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--iptv-text-primary);
  transition: all 0.3s ease;
}

.iptv-support-card:hover {
  border-color: var(--iptv-accent-primary);
  transform: translateY(-5px);
  box-shadow: var(--iptv-shadow-glow);
  color: var(--iptv-text-primary);
}

.iptv-support-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.iptv-support-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.iptv-support-info {
  color: var(--iptv-text-secondary);
  font-size: 0.875rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.iptv-contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-xl);
  padding: 3rem;
}

.iptv-form-group {
  margin-bottom: 1.5rem;
}

.iptv-form-group label {
  display: block;
  color: var(--iptv-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.iptv-form-group input,
.iptv-form-group select,
.iptv-form-group textarea {
  width: 100%;
  background: var(--iptv-bg-primary);
  border: 1px solid var(--iptv-border-color);
  border-radius: var(--iptv-radius-md);
  padding: 1rem;
  color: var(--iptv-text-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.iptv-form-group input:focus,
.iptv-form-group select:focus,
.iptv-form-group textarea:focus {
  outline: none;
  border-color: var(--iptv-accent-primary);
}

.iptv-form-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.iptv-btn {
  flex: 1;
  min-width: 200px;
  padding: 1rem 2rem;
  border-radius: var(--iptv-radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.iptv-btn-primary {
  background: var(--iptv-accent-gradient);
  color: white;
}

.iptv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--iptv-shadow-glow);
}

.iptv-btn-whatsapp {
  background: #25d366;
  color: white;
}

.iptv-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.iptv-contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--iptv-border-color);
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.iptv-contact-info a {
  color: var(--iptv-text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.iptv-contact-info a:hover {
  color: var(--iptv-accent-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--iptv-bg-secondary) !important;
  border-top: 1px solid var(--iptv-border-color);
  padding: 2rem 0;
}

.iptv-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.iptv-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--iptv-text-primary);
}

.iptv-footer-logo::before {
  content: '📺';
}

.iptv-footer-copyright {
  color: var(--iptv-text-muted);
  font-size: 0.875rem;
}

/* ============================================
   BACK BUTTON
   ============================================ */
.iptv-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--iptv-bg-card);
  border: 1px solid var(--iptv-border-color);
  color: var(--iptv-text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--iptv-radius-md);
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.iptv-back-btn:hover {
  border-color: var(--iptv-accent-primary);
  color: var(--iptv-text-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .iptv-nav-grid-items {
    grid-template-columns: 1fr;
  }
  
  .iptv-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .iptv-form-buttons {
    flex-direction: column;
  }
  
  .iptv-btn {
    min-width: 100%;
  }
  
  .iptv-footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.iptv-section {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: rgba(99, 102, 241, 0.3);
  color: white;
}
