/*
Theme Name: IPTVWell Demo12 Clone
Theme URI: https://iptvwell.com/demo12/
Author: Your Name
Author URI: https://yourwebsite.com/
Description: A WordPress theme clone of IPTVWell Demo12 with full control panel for content and settings.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptvwell-demo12
Tags: custom-background, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #23005a;
  color: #fff;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Global Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 20px);
  width: 100%;
  overflow-x: hidden;
}

/* Header Styles */
.site-header {
  background: var(--header-bg-color, linear-gradient(135deg, #23005a 0%, #4a0e4e 50%, #6a1b9a 100%));
  padding: clamp(10px, 2vw, 15px) 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header Container - Mobile First */
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  text-decoration: none;
  color: var(--header-text-color, #fff);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  order: 1; /* Logo first on the left */
}

.site-logo img {
  max-height: clamp(30px, 5vw, 40px);
  width: auto;
}

.site-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--header-text-color, #fff);
}

/* Mobile Menu Toggle - Always Visible on Mobile */
.mobile-menu-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--header-text-color, #fff);
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  z-index: 1001;
  order: 3; /* Mobile button on the right */
  transition: all 0.3s ease;
  position: relative;
  gap: 4px;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

/* Hamburger Lines */
.hamburger-line {
  width: 20px;
  height: 3px;
  background-color: var(--header-text-color, #fff);
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
  position: relative;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation - Hidden on Mobile by Default */
.site-navigation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--header-bg-color, linear-gradient(135deg, #23005a 0%, #4a0e4e 50%, #6a1b9a 100%));
  z-index: 1000;
  padding-top: 80px;
  overflow-y: auto;
  order: 2; /* Navigation in the middle */
}

.site-navigation.active {
  display: block;
}

/* Mobile Navigation Menu */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-menu li {
  margin: 0;
  width: 100%;
}

.nav-menu a {
  color: var(--header-text-color, #fff);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background-color: var(--header-hover-bg-color, rgba(255, 255, 255, 0.1));
  padding-left: 40px;
}

/* Buy Now Button in Mobile Menu */
.buy-now-wrapper {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.btn-buy-now {
  background: var(--buy-now-bg-color, #e91e63);
  color: var(--buy-now-text-color, #fff) !important;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: calc(100% - 40px);
  margin: 0 20px;
}

.btn-buy-now:hover {
  background: var(--buy-now-hover-bg-color, #f06292);
  color: var(--buy-now-text-color, #fff) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
  text-decoration: none;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Desktop Styles */
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .site-navigation {
    display: flex !important;
    align-items: center;
    position: relative;
    background: none;
    padding: 0;
    gap: 20px;
  }
  
  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(5px, 2vw, 15px);
    padding: 0;
  }
  
  .nav-menu li {
    width: auto;
  }
  
  .nav-menu a {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    padding: clamp(8px, 1.5vw, 10px) clamp(10px, 2vw, 15px);
    border-radius: 25px;
    border-bottom: none;
  }
  
  .nav-menu a:hover {
    background: var(--header-hover-bg-color, rgba(255, 255, 255, 0.1));
    color: var(--header-hover-text-color, #fff);
    transform: translateY(-2px);
    padding-left: clamp(10px, 2vw, 15px);
  }
  
  .buy-now-wrapper {
    margin: 0 0 0 15px;
    width: auto;
  }
  
  .btn-buy-now {
    padding: clamp(12px, 2vw, 15px) clamp(20px, 3vw, 30px);
    width: auto;
    margin: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .site-header {
    padding: 8px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .site-header .container {
    padding: 0 15px;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    z-index: 1002;
    position: relative;
  }
  
  .site-navigation {
    display: none !important;
  }
  
  .site-navigation.active {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(35, 0, 90, 0.98) 0%, rgba(74, 14, 78, 0.98) 50%, rgba(106, 27, 154, 0.98) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1001;
    padding-top: 80px;
    overflow-y: auto;
    animation: slideInFromTop 0.3s ease-out;
  }
  
  @keyframes slideInFromTop {
    from {
      opacity: 0;
      transform: translateY(-100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .nav-menu {
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    max-width: 100%;
  }
  
  .nav-menu li {
    margin: 0;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 0.3s ease-out forwards;
  }
  
  .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
  .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
  .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
  .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .nav-menu a {
    padding: 18px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 56px;
    position: relative;
    overflow: hidden;
  }
  
  .nav-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    transition: width 0.3s ease;
  }
  
  .nav-menu a:hover::before {
    width: 100%;
  }
  
  .nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 40px;
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  }
  
  /* Enhanced Mobile Buy Now Button */
  .buy-now-wrapper {
    width: 100%;
    text-align: center;
    margin: 30px 0;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 0.3s ease-out 0.6s forwards;
  }
  
  .btn-buy-now {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%) !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-align: center;
    border-radius: 30px;
    margin: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    display: block;
    width: 100%;
    min-height: 56px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
  }
  
  .btn-buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .btn-buy-now:hover::before {
    left: 100%;
  }
  
  .btn-buy-now:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 50%, #f7931e 100%) !important;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    transform: translateY(-3px);
  }
  
  .btn-buy-now:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Adjust body padding for fixed header */
body {
  padding-top: clamp(70px, 10vw, 80px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #23005a 0%, #4a0e4e 50%, #6a1b9a 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}

/* Video Section */
.hero-video-section {
  position: relative;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  max-height: 400px;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  cursor: pointer;
}

.video-container:hover .video-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 68, 68, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(255, 68, 68, 1);
}

.play-icon {
  color: white;
  font-size: 24px;
  margin-left: 4px;
}

.video-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 60px);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-content .video-icon {
  font-size: clamp(3rem, 5vw, 4rem);
  display: block;
  margin-bottom: 20px;
}

.placeholder-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin: 0;
}

/* Hero Text Section */
.hero-text-section {
  text-align: left;
}

.hero-section h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.hero-section p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

.hero-section .btn {
  display: inline-block;
  padding: clamp(12px, 2vw, 15px) clamp(25px, 4vw, 40px);
  background: #ff4444;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.hero-section .btn:hover {
  background: #ff6666;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(15px, 3vw, 25px);
  margin: 40px 0;
}

.hero-stat {
  padding: clamp(15px, 3vw, 20px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.hero-stat .number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.hero-stat .label {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
}

.hero-features {
  margin-top: 30px;
}

/* Features Content Layout */
.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 50px);
  align-items: start;
}

.features-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.features-left li {
  padding: 6px 0;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.features-left li:before {
  content: "•";
  color: #ff4444;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 4px;
}

.features-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Features Video Styles */
.features-video-container {
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 400px;
}

.features-video {
  width: 100%;
  height: auto;
  max-height: 250px;
  display: block;
  border-radius: 15px;
}

.features-video-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: clamp(30px, 4vw, 40px);
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  width: 100%;
  max-width: 400px;
}

.video-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.video-icon {
  font-size: clamp(2rem, 4vw, 3rem);
  opacity: 0.7;
}

.features-video-placeholder p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  margin: 0;
}

.channel-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 50px;
  padding: 30px 0;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform 0.3s ease;
  flex: 0 1 auto;
}

.logo-item:hover {
  transform: scale(1.1);
}

.logo-item img {
  height: clamp(25px, 4vw, 40px);
  width: auto;
  filter: brightness(0.8) contrast(1.2);
  transition: filter 0.3s ease;
  max-width: 100%;
}

.logo-item:hover img {
  filter: brightness(1) contrast(1);
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .site-header .container {
    padding: 0 15px;
  }
  
  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 10000;
  }
  
  .site-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(35, 0, 90, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .site-navigation.active {
    display: block;
  }
  
  .nav-menu {
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    margin: 0;
    list-style: none;
  }
  
  .nav-menu li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu a {
    padding: 15px 20px;
    border-radius: 0;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .hero-section {
    padding: 60px 0 40px;
    min-height: auto;
    background-attachment: scroll;
  }
  
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-video-section {
    order: 2;
  }
  
  .hero-text-section {
    order: 1;
    text-align: center;
  }
  
  .video-placeholder {
    min-height: 200px;
    padding: 30px 20px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
  }
  
  .hero-features {
    text-align: center;
    margin-top: 20px;
  }
  
  /* Features Content Responsive */
  .features-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .features-left {
    order: 2;
  }
  
  .features-right {
    order: 1;
    justify-content: center;
  }
  
  .features-left ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  /* Features Video Responsive */
  .features-video {
    max-height: 200px;
  }
  
  .features-video-placeholder {
    padding: 20px 15px;
    max-width: 300px;
  }
  
  .video-icon {
    font-size: 2rem;
  }
  
  .channel-logos {
    gap: 15px;
    margin-top: 30px;
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }
  
  .site-header {
    padding: 6px 0;
  }
  
  .site-header .container {
    padding: 0 10px;
  }
  
  /* Enhanced Mobile Navigation for Small Screens */
  .mobile-menu-toggle {
    z-index: 10001 !important;
    position: relative;
  }
  
  .site-navigation {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    max-height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
    z-index: 10000 !important;
  }
  
  .nav-menu a {
    padding: 18px 15px !important;
    font-size: 16px !important;
    min-height: 50px !important;
  }
  
  .btn-buy-now {
    margin: 15px !important;
    padding: 15px 20px !important;
    min-height: 50px !important;
    font-size: 16px !important;
    border-radius: 25px !important;
  }
  
  /* Improved Mobile Logo Sizing */
  .site-logo img {
    max-height: 35px;
  }
  
  .site-title {
    font-size: 1.2rem;
  }
  
  .hero-section {
    padding: 30px 0 25px;
    min-height: 75vh;
  }
  
  .hero-section h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .hero-section p {
    font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .hero-section .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-stats {
    gap: 10px;
    margin: 25px 0;
    flex-wrap: wrap;
  }
  
  .hero-stat {
    padding: 12px 8px;
    min-width: calc(50% - 5px);
    flex: 1 1 calc(50% - 5px);
  }
  
  .hero-stat h3 {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
  }
  
  .hero-stat p {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  }
  
  .channel-logos {
    gap: 8px;
    padding: 15px 0;
    margin: 0 -10px;
  }
  
  .logo-item img {
    height: clamp(20px, 5vw, 30px);
  }
  
  /* Mobile Content Sections */
  .content-section {
    padding: clamp(30px, 8vw, 50px) 0;
  }
  
  .content-section h2 {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
    margin-bottom: 15px;
  }
  
  .content-section p {
    font-size: clamp(0.9rem, 3vw, 1rem) !important;
    line-height: 1.6;
  }
  
  /* Mobile Grid Improvements */
  .content-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }
  
  .movie-item {
    width: 100%;
    min-width: 140px;
  }
  
  /* Mobile Form Improvements */
  .contact-section {
    margin: 10px;
    padding: 20px 15px;
    border-radius: 15px;
  }
  
  /* Mobile Navigation Improvements */
  .nav-menu a {
    padding: 15px 20px;
    font-size: 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .btn-buy-now {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 20px;
    padding: 12px 20px;
  }
  
  /* Prevent Mobile Overflow */
  
  /* Mobile Image Handling */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Mobile Table Responsiveness */
  table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  
  /* Mobile Video Handling */
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }
  
  /* Mobile FAQ Layout */
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .faq-image-container {
    position: relative;
    top: auto;
    order: -1;
  }
  
  .faq-default-image {
    padding: 20px;
  }
  
  .support-features {
    flex-direction: column;
    gap: 8px;
  }
  
  .support-feature {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  
  .faq-side-image {
    max-height: 250px;
  }
  
  /* Enhanced Touch-Friendly Elements */
  .btn,
  button,
  .btn-buy-now,
  .play-button,
  input[type="submit"],
  .submit-btn,
  .send-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* FAQ Mobile Improvements */
  .faq-item {
    margin-bottom: 10px;
  }
  
  .faq-question {
    padding: 15px 20px;
    min-height: 44px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
  }
  
  .faq-answer {
    padding: 15px 20px;
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Mobile Stats Section */
  .stats-section {
    padding: clamp(40px, 10vw, 60px) 0;
    background-attachment: scroll;
  }
  
  .stats-section .container {
    padding: 0 15px;
  }
  
  .stats-section h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    margin-bottom: 15px;
  }
  
  .stats-section p {
    font-size: clamp(1rem, 3.5vw, 1.2rem) !important;
    margin-bottom: 30px;
  }
  
  .stats-row {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .stat-box {
    padding: 15px 10px;
    backdrop-filter: blur(10px);
  }
  
  .stat-box .number {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
    margin-bottom: 5px;
  }
  
  .stat-box .label {
    font-size: clamp(0.85rem, 2.5vw, 1rem) !important;
  }
  
  /* Pricing Cards Mobile */
  .pricing-section {
    padding: clamp(40px, 8vw, 60px) 15px;
  }
  
  .pricing-grid {
    gap: 20px;
    padding: 0;
  }
  
  .pricing-card {
    margin-bottom: 20px;
    padding: 20px 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .pricing-card.featured {
    transform: none;
    margin-bottom: 25px;
  }
  
  .pricing-card .btn {
    width: 100%;
    min-height: 44px;
    margin-top: 15px;
    padding: 15px 25px;
  }
  
  /* Mobile Link Improvements */
  a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }
  
  .nav-menu a,
  .footer-menu a {
    min-height: 44px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
  }
  
  /* Improve Mobile Focus States */
  button:focus,
  .btn:focus,
  input:focus,
  textarea:focus,
  select:focus,
  a:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
  }
}
}

/* Content Showcase Section */
.content-showcase-section {
  padding: clamp(60px, 8vw, 100px) 0;
  /* Background controlled by customizer */
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(15px, 2vw, 20px);
  margin-bottom: clamp(40px, 6vw, 60px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.content-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 2/3;
}

.content-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.content-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: filter 0.3s ease;
}

.content-item:hover img {
  filter: brightness(1.1);
}

/* Movie Overlay Styles */
.movie-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: clamp(15px, 2vw, 20px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.content-item:hover .movie-overlay {
  transform: translateY(0);
}

.movie-overlay h4 {
  color: #fff;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.content-item:hover .play-icon {
  opacity: 1;
}

/* Movie Link Styles */
.content-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.content-item a:hover {
  text-decoration: none;
}

.content-description-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.content-desc-left h2,
.content-desc-right h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: clamp(20px, 3vw, 30px);
  line-height: 1.3;
}

.content-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: clamp(15px, 2vw, 20px);
  align-items: center;
}

.content-logos .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 15px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.content-logos .logo-item:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.15);
}

.content-logos .logo-item img {
  height: clamp(25px, 3vw, 35px);
  width: auto;
  max-width: 100%;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.content-logos .logo-item:hover img {
  filter: brightness(1.1);
}

/* Stats Section - Full Width Background */
.stats-section {
  width: 100vw !important;
  position: relative;
  left: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding: clamp(60px, 10vw, 100px) 0;
  /* Background controlled by customizer - removed hardcoded background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 400px;
  box-sizing: border-box !important;
  overflow-x: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-section h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: clamp(15px, 2vw, 25px);
}

.stats-section p {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: clamp(40px, 6vw, 60px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Statistics Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin: 0;
}

.stat-box {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: clamp(20px, 3vw, 30px);
  text-align: center;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 3;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: #ff4444;
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.stat-box .number {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.stat-box .label {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Main Channel Logos */
.main-channel-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin: clamp(40px, 6vw, 60px) 0;
  flex-wrap: wrap;
}

.main-channel-logos .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(15px, 3vw, 20px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 80px;
  min-height: 50px;
}

.main-channel-logos .logo-item:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.15);
}

/* Dynamic Logo Styles */
.main-channel-logos .logo-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.main-channel-logos .logo-item a:hover {
  text-decoration: none;
}

.main-channel-logos .text-logo {
  position: relative;
}

.main-channel-logos .text-logo span {
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-channel-logos .logo-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  filter: brightness(1);
  transition: filter 0.3s ease;
}

.main-channel-logos .logo-item:hover img {
  filter: brightness(1.2);
}

.hbo-logo span,
.ocs-logo span,
.prime-logo span,
.hulu-logo span,
.max-logo span {
  font-weight: 700;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  color: #fff;
}

.hbo-logo {
  background: #1f1f1f !important;
}

.ocs-logo {
  background: #ff6600 !important;
}

.prime-logo {
  background: #232f3e !important;
}

.hulu-logo {
  background: #3dbb3d !important;
}

.max-logo {
  background: #0071eb !important;
}

/* Second Movie Grid */
.content-grid-second {
  margin-top: clamp(40px, 6vw, 60px);
  margin-bottom: clamp(40px, 6vw, 60px);
}

/* Streaming Logos */
.streaming-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: clamp(15px, 2vw, 20px);
  align-items: center;
}

.streaming-logos .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 15px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 45px;
}

.streaming-logos .logo-item:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

/* Content Features Extended */
.content-features-extended {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 15px);
}

.content-features-extended .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.content-features-extended .feature-item p {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.content-features {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 2vw, 20px);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-item .checkmark {
  color: #4CAF50;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Features Section */
.features-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.features-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 4vw, 40px);
  margin-top: 40px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(20px, 4vw, 30px);
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-item .icon {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: #ff4444;
}

.feature-item h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.feature-item p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Pricing Section */
.pricing-section {
  padding: clamp(60px, 8vw, 100px) 0;
  /* Background controlled by customizer */
}

.pricing-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(15px, 2vw, 20px);
  color: #fff;
}

.pricing-subtitle {
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: clamp(30px, 5vw, 50px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(25px, 4vw, 30px);
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: fit-content;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: #ff4444;
  box-shadow: 0 15px 40px rgba(255, 68, 68, 0.2);
}

.pricing-card.featured {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.15);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4444;
  color: white;
  padding: 8px 20px;
  border-radius: 0 0 10px 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  margin-top: 15px;
}

.pricing-card .price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  gap: 5px;
}

.pricing-card .currency {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #ff4444;
}

.pricing-card .amount {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #ff4444;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
}

.features-list li {
  padding: clamp(6px, 1vw, 8px) 0;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.pricing-card .btn {
  display: inline-block;
  padding: clamp(12px, 2vw, 15px) clamp(25px, 4vw, 35px);
  background: #ff4444;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  transition: all 0.3s ease;
  width: 85%;
  margin-bottom: 15px;
  border: none;
  cursor: pointer;
}

.pricing-card .btn:hover {
  background: #ff6666;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.guarantee {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-style: italic;
}

/* Features Grid Section */
.features-grid-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.features-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 50px);
  max-width: 1000px;
  margin: 0 auto;
}

.feature-box {
  text-align: center;
  padding: clamp(30px, 5vw, 40px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-box .feature-icon {
  font-size: clamp(3rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.feature-box p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Sports Section */
.sports-section {
  padding: clamp(60px, 8vw, 100px) 0;
  /* Background controlled by customizer */
}

.sports-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
  color: #fff;
}

.sports-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(100px, 15vw, 150px), 1fr));
  gap: clamp(15px, 2.5vw, 25px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Handle different logo counts responsively */
@media (min-width: 1200px) {
  .sports-logos {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 768px) {
  .sports-logos {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: clamp(10px, 2vw, 15px);
  }
}

@media (max-width: 480px) {
  .sports-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.sports-logo,
.sports-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2.5vw, 15px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background-color 0.3s ease;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sports-logo:hover,
.sports-content:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

.sports-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.sports-logo img,
.sports-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.sports-logo a:hover img,
.sports-content:hover img {
  opacity: 0.9;
}

/* How It Works Section */
.how-it-works-section {
  padding: clamp(60px, 8vw, 100px) 0;
  /* Background controlled by customizer */
}

.how-it-works-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(15px, 2vw, 20px);
  color: #fff;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: clamp(40px, 6vw, 60px);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 50px);
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
  position: relative;
  padding: clamp(30px, 5vw, 40px) clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-10px);
}

.step-icon {
  margin-bottom: 20px;
}

.icon-circle {
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  background: linear-gradient(45deg, #ff4444, #ff6666);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: white;
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #ff4444;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.step-item h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.step-item p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: clamp(60px, 8vw, 100px) 0;
  /* Background controlled by customizer */
}

.testimonials-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 30px);
  color: #fff;
}

.trustpilot-rating {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.trustpilot-rating .stars {
  color: #ffb400;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-right: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(20px, 4vw, 30px);
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(25px, 4vw, 30px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff4444, #ff6666);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.author-info h4 {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 600;
  color: #fff;
}

.author-info span {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq-section {
  padding: clamp(60px, 8vw, 100px) 0;
  /* Background controlled by customizer */
}

.faq-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  color: #fff;
}

/* FAQ Wrapper - Two Column Layout */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(30px, 5vw, 60px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* FAQ Image Container */
.faq-image-container {
  position: sticky;
  top: 100px;
}

.faq-side-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  max-height: 500px;
}

/* Default FAQ Image/Card */
.faq-default-image {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: clamp(25px, 5vw, 40px);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-icon {
  width: clamp(60px, 12vw, 80px);
  height: clamp(60px, 12vw, 80px);
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.faq-icon svg {
  width: 60%;
  height: 60%;
}

.faq-default-image h3 {
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-default-image p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 25px;
}

.support-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.feature-icon {
  font-size: 1.2rem;
  min-width: 24px;
}

.faq-container {
  max-width: none;
  margin: 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.faq-question {
  padding: clamp(15px, 3vw, 20px);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question:after {
  content: "+";
  font-size: 1.5rem;
  color: #ff6b35;
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-question.active:after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 clamp(15px, 3vw, 20px);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  padding: clamp(15px, 3vw, 20px);
  max-height: 200px;
}

.faq-answer p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Footer */
.site-footer {
  background: #1a0033;
  padding: clamp(40px, 6vw, 60px) 0 clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.footer-navigation .footer-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: clamp(15px, 3vw, 30px);
  flex-wrap: wrap;
}

.footer-navigation .footer-menu li {
  margin: 0;
}

.footer-navigation .footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  transition: color 0.3s ease;
  padding: 5px 0;
}

.footer-navigation .footer-menu a:hover {
  color: #ff4444;
}

.footer-section h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-section p,
.footer-section a {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ff4444;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-navigation .footer-menu {
    justify-content: center;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .content-description-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .content-logos {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 480px) {
  .content-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  
  .content-description-row {
    gap: 30px;
  }
  
  .content-logos {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 10px;
  }
  
  .feature-item {
    gap: 10px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.content-item {
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.9);
}

.content-item.active {
    opacity: 1;
    transform: scale(1);
}
.movie-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.movie-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.movie-item {
    flex: 0 0 auto;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.movie-item img {
    width: 100%;
    height: auto;
    display: block;
}

.movie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
}

.play-icon {
    font-size: 20px;
    color: #fff;
    margin-top: 5px;
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

/* Contact Page Layout */
.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    text-align: center;
    margin: clamp(80px, 15vw, 120px) 0 clamp(20px, 4vw, 40px) 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Section Styling */
.contact-section {
    background: linear-gradient(135deg, rgba(35, 0, 90, 0.95) 0%, rgba(74, 14, 78, 0.95) 50%, rgba(106, 27, 154, 0.95) 100%);
    padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 40px);
    border-radius: 20px;
    margin: clamp(20px, 4vw, 40px) 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h1,
.contact-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: clamp(15px, 3vw, 30px);
    font-weight: 600;
}

.contact-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: clamp(10px, 2vw, 20px);
}

.contact-section p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: clamp(25px, 5vw, 40px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form Styling */
.contact-form,
form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 3vw, 25px);
}

/* Form Input Styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="phone"],
textarea,
select {
    width: 100%;
    padding: clamp(12px, 2.5vw, 18px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    font-family: 'Montserrat', Arial, sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="phone"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Textarea Specific */
textarea {
    min-height: clamp(100px, 20vw, 150px);
    resize: vertical;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Submit Button Styling */
button[type="submit"],
input[type="submit"],
.submit-btn,
.send-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    color: #fff;
    border: none;
    padding: clamp(14px, 3vw, 20px) clamp(30px, 6vw, 50px);
    border-radius: 50px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    font-family: 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    align-self: center;
    min-width: clamp(120px, 25vw, 180px);
}

button[type="submit"]:hover,
input[type="submit"]:hover,
.submit-btn:hover,
.send-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 50%, #f7931e 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

button[type="submit"]:active,
input[type="submit"]:active,
.submit-btn:active,
.send-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

/* Form Row Layout */
.form-row {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
}

.form-row .form-field {
    flex: 1;
    min-width: clamp(200px, 40vw, 280px);
}

/* Form Labels */
label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

/* Contact Info Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 50vw, 350px), 1fr));
    gap: clamp(30px, 6vw, 50px);
    margin: clamp(40px, 8vw, 60px) 0;
}

.contact-info-item {
    text-align: center;
    padding: clamp(20px, 4vw, 30px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item h3 {
    color: #ff6b35;
    margin-bottom: clamp(10px, 2vw, 15px);
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-field {
        min-width: 100%;
    }
    
    .contact-section {
        margin: 15px;
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .page-title {
        margin-top: 100px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        margin: 10px;
        padding: 20px 15px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="phone"],
    textarea,
    select {
        padding: 15px;
    }
    
    button[type="submit"],
    input[type="submit"],
    .submit-btn,
    .send-btn {
        padding: 16px 35px;
        width: 100%;
        max-width: none;
    }
}