/* Card Pricing Styles */
.card-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.1),
    rgba(204, 0, 0, 0.05)
  );
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 0, 0, 0.2);
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.1);
}

.original-price {
  font-size: 1.5rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.7;
  font-weight: 500;
}

.current-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--youtube-red);
  text-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
}

.discount-badge {
  background: var(--gradient-youtube);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-red);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-discount {
  0%,
  100% {
    transform: scale(1);
    box-shadow: var(--shadow-red);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.5);
  }
}

/* Enhanced pricing for featured cards */
.pricing-card.featured .card-pricing {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.1),
    rgba(204, 0, 0, 0.05)
  );
  border: 1px solid rgba(255, 0, 0, 0.3);
  box-shadow: var(--shadow-red);
}

.pricing-card.featured .current-price {
  background: var(--gradient-youtube);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
}

.pricing-card.featured .discount-badge {
  background: var(--gradient-youtube);
  animation-duration: 1.5s;
  box-shadow: var(--shadow-red);
}

/* Responsive pricing adjustments */
@media (max-width: 768px) {
  .card-pricing {
    padding: 0.6rem 0.8rem;
    gap: 0.5rem;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .current-price {
    font-size: 1.5rem;
    flex: 0 1 auto;
  }

  .original-price {
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .discount-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .card-pricing {
    padding: 0.6rem;
  }

  .current-price {
    font-size: 1.5rem;
  }

  .pricing-card.featured .current-price {
    font-size: 1.6rem;
  }
}

:root {
  /* Color Palette - Besher Card Theme (Light) */
  --primary: #00b4a6; /* Teal green - main brand color */
  --primary-dark: #008a7b; /* Darker teal */
  --secondary: #1a365d; /* Dark blue */
  --accent: #38b2ac; /* Light teal accent */
  --youtube-red: #ff0000; /* YouTube Premium red */
  --youtube-red-dark: #cc0000; /* Darker YouTube red */
  --background: linear-gradient(
    135deg,
    #f7fafc 0%,
    #edf2f7 100%
  ); /* Light gradient */
  --surface: #ffffff; /* White surface */
  --text-primary: #2d3748; /* Dark gray text */
  --text-secondary: #4a5568; /* Medium gray text */
  --error: #e53e3e; /* Red */
  --success: #38a169; /* Green */
  --warning: #d69e2e; /* Orange */

  /* Additional theme colors */
  --card-bg: rgba(255, 255, 255, 0.9);
  --card-border: rgba(0, 180, 166, 0.2);
  --gradient-primary: linear-gradient(135deg, #00b4a6 0%, #008a7b 100%);
  --gradient-secondary: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  --gradient-youtube: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  --gradient-youtube-light: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.1) 0%,
    rgba(204, 0, 0, 0.05) 100%
  );

  /* Typography */
  --font-primary: "Cairo", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  /* Spacing */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 3rem; /* 48px */

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
  --shadow-teal: 0 4px 20px rgba(0, 180, 166, 0.3);
  --shadow-red: 0 4px 20px rgba(255, 0, 0, 0.3);

  /* Enhanced scroll margin for targeted package cards */
  --scroll-offset: 90px;
}

/* Scroll margin for package cards to handle sticky header */
#golden-package-ios,
#royal-package-ios,
#ipad-package-ios {
  scroll-margin-top: var(--scroll-offset);
}

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

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-primary);
  background: var(--gradient-secondary);
  color: var(--text-primary);
  line-height: var(--line-height-base);
  text-align: right;
  direction: rtl;
  overflow-x: hidden;
  min-height: 100vh;
  font-size: 1.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  font-size: 1.5rem;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-xl);
  color: var(--primary);
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--youtube-red), var(--primary));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--youtube-red),
    var(--youtube-red-dark)
  );
  color: white;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}

.btn-primary::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-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
  color: white;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--youtube-red);
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 0, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

/* Header */
.header {
  position: fixed;
  top: 20px; /* Reduced from 40px */
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 27, 61, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 0;
  border-bottom: 1px solid var(--youtube-red);
  transform: translateY(0);
  will-change: transform, background, padding, box-shadow;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 5px 0; /* Reduced padding */
  box-shadow: var(--shadow-red);
  border-bottom: 1px solid var(--youtube-red);
}

/* Header animation when page loads */
@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header {
  animation: headerSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header hide/show on scroll */
.header.hide {
  transform: translateY(-100%);
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}

/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px; /* Header height (80px) + Ticker height (40px) + extra spacing (40px) */
}

/* Add padding to the first section to account for fixed header and ticker */
.hero {
  padding-top: 160px; /* Header height (80px) + Ticker height (40px) + extra spacing (40px) */
  position: relative;
  z-index: 1;
}

/* Focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--youtube-red);
  outline-offset: 3px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

/* Hide focus styles for mouse users */
body.using-mouse :focus:not(:focus-visible) {
  outline: none;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-cyan);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(38, 198, 218, 0.4);
}

.back-to-top:active {
  transform: translateY(1px);
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .header,
  .nav-link,
  .btn,
  .back-to-top {
    transition: none !important;
    animation: none !important;
  }

  .nav-link::before,
  .nav-link::after {
    transition: none !important;
  }

  .ticker-bar {
    animation: none !important;
  }
}

/* Print styles */
@media print {
  .header,
  .back-to-top {
    display: none !important;
  }

  html {
    scroll-padding-top: 0;
  }

  .section-title::after {
    background: #ff0000;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem; /* Added padding for better spacing */
  padding: 0 2rem;
  max-width: 1400px;
  margin: 1rem auto 0;
  position: relative;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  z-index: 1002;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
}

.logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--primary); /* Fallback color for older browsers */
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  display: inline-block; /* Required for gradient text to work in some browsers */
}

.logo-dot {
  color: var(--youtube-red);
  font-size: 2.2rem;
  line-height: 1;
  margin-right: 2px;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.logo-dot:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}
/* Floating WhatsApp glass button */
:root {
  --floating-whatsapp-size-desktop: 64px;
  --floating-whatsapp-size-tablet: 56px;
  --floating-whatsapp-size-mobile: 55px;
  --floating-whatsapp-right-desktop: 25px;
  --floating-whatsapp-right-mobile: 25px;
  --floating-whatsapp-bottom-margin: 40px;
  --back-to-top-height: 60px; /* fallback value - JS will update this */
}

.floating-whatsapp {
  position: fixed;
  right: var(--floating-whatsapp-right-desktop);
  bottom: calc(
    var(--floating-whatsapp-bottom-margin) + var(--back-to-top-height, 60px)
  );
  width: var(--floating-whatsapp-size-desktop);
  height: var(--floating-whatsapp-size-desktop);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  z-index: 9999;
  cursor: pointer;

  /* Glassmorphism */
  background: rgb(43, 255, 0);
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(3, 15, 30, 0.25);
  color: green; /* WhatsApp brand green for icon */

  /* Backdrop filter (may be ignored in unsupported browsers) */
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);

  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
  overflow: visible;
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (
  (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))
) {
  .floating-whatsapp {
    background: rgba(0, 0, 0, 0.28);
    border: 10px solid rgba(255, 255, 255, 0.06);
  }
}

.floating-whatsapp .fab-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  height: 70%;
  position: relative;
}

.floating-whatsapp .fab {
  font-size: calc(var(--floating-whatsapp-size-desktop) * 0.45);
  color: #ffffff;
  display: inline-block;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
  position: relative;
  z-index: 2;
}

.floating-whatsapp .fab::before {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.06),
    0 0 10px rgba(37, 211, 102, 0.08);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 30px rgba(3, 15, 30, 0.35);
  outline: none;
}

.floating-whatsapp:focus-visible {
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12),
    0 12px 30px rgba(3, 15, 30, 0.25);
  border-color: rgba(37, 211, 102, 0.28);
}

.floating-whatsapp:active {
  transform: translateY(0) scale(0.99);
  transition-duration: 120ms;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54%;
  height: 54%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(37, 211, 102, 0.1),
    rgba(37, 211, 102, 0.02) 40%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
  transition: opacity 300ms ease;
  filter: blur(6px);
}

@keyframes fw-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.98);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.98);
    opacity: 0.9;
  }
}
.floating-whatsapp::before {
  animation: fw-pulse 3.8s ease-in-out infinite;
}

@media (max-width: 992px) {
  .floating-whatsapp {
    width: var(--floating-whatsapp-size-tablet);
    height: var(--floating-whatsapp-size-tablet);
    right: var(--floating-whatsapp-right-desktop);
  }
  .floating-whatsapp .fab {
    font-size: calc(var(--floating-whatsapp-size-tablet) * 0.45);
  }
}

@media (max-width: 576px) {
  .floating-whatsapp {
    width: var(--floating-whatsapp-size-mobile);
    height: var(--floating-whatsapp-size-mobile);
    right: var(--floating-whatsapp-right-mobile);
    bottom: calc(
      var(--floating-whatsapp-bottom-margin) + var(--back-to-top-height, 60px)
    );
  }
  .floating-whatsapp .fab {
    font-size: calc(var(--floating-whatsapp-size-mobile) * 0.45);
  }
}

.floating-whatsapp[aria-hidden="true"] {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 2rem;
}

.nav-item {
  margin: 0 0.3rem;
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  z-index: 1;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.1),
    rgba(204, 0, 0, 0.05)
  );
  border-radius: 6px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-link:hover::before,
.nav-link:focus::before,
.nav-link.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Focus styles for navigation links */
.nav-link:focus {
  outline: none;
  color: var(--youtube-red);
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

/* Hide focus styles when using mouse */
body.using-mouse .nav-link:focus:not(:focus-visible) {
  outline: none;
  color: var(--text-primary);
  text-shadow: none;
}

.nav-link i {
  margin-left: 6px;
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: var(--youtube-red);
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.nav-link:hover i {
  transform: translateX(-3px);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.nav-item:not(:last-child) .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-youtube);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--youtube-red);
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

/* CTA Button in Nav */
.nav-cta {
  margin-right: 1.5rem;
  margin-left: 1rem;
}

.nav-cta .btn {
  padding: 0.7rem 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 8px;
  box-shadow: var(--shadow-red);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--gradient-youtube);
  border: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nav-cta .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--youtube-red-dark),
    var(--youtube-red)
  );
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.nav-cta .btn:hover::before {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  background: transparent;
  border: none;
  padding: 8px 4px;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* Add focus styles for better accessibility */
.mobile-menu-btn:focus-visible {
  outline: 2px solid var(--youtube-red);
  outline-offset: 3px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.menu-icon {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--gradient-youtube);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.menu-icon:hover {
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.mobile-menu-btn.active .menu-icon:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
  background: var(--youtube-red);
}

.mobile-menu-btn.active .menu-icon:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .menu-icon:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
  background: var(--youtube-red);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .header-container {
    padding: 10px 1.5rem 0;
  }

  .nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .nav-cta .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .header {
    padding: 8px 0;
  }

  .logo a {
    font-size: 1.6rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 40px rgba(0, 27, 61, 0.3);
    z-index: 1000;
    border-left: 1px solid var(--card-border);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    margin: 1.5rem 0;
    padding: 0;
  }

  .nav-item {
    margin: 0.4rem 0;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .nav-menu.active .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu.active .nav-item:nth-child(2) {
    transition-delay: 0.15s;
  }
  .nav-menu.active .nav-item:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-menu.active .nav-item:nth-child(4) {
    transition-delay: 0.25s;
  }
  .nav-menu.active .nav-item:nth-child(5) {
    transition-delay: 0.3s;
  }
  .nav-menu.active .nav-item:nth-child(6) {
    transition-delay: 0.35s;
  }
  .nav-menu.active .nav-item:nth-child(7) {
    transition-delay: 0.4s;
  }

  .nav-link {
    display: flex;
    padding: 1rem 1.2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    width: 100%;
    color: var(--primary-dark);
    justify-content: space-between;
    align-items: center;
  }

  .nav-link i {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
  }

  .nav-link:hover i {
    transform: rotate(0);
  }

  .nav-link::before {
    background: rgba(255, 0, 0, 0.1);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 80%;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 0, 0, 0.1);
    color: var(--youtube-red);
    padding-right: 1.5rem;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
  }

  .nav-cta {
    width: 100%;
    margin: 1rem 0 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.45s;
  }

  .nav-menu.active .nav-cta {
    opacity: 1;
    transform: translateY(0);
  }

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

  .header.scrolled {
    padding: 5px 0;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 10px 1.2rem 0;
  }

  .logo a {
    font-size: 1.5rem;
  }

  .nav-menu {
    width: 90%;
    padding: 5rem 1.5rem 2rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }

  .nav-cta .btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
  }

  .mobile-menu-btn {
    width: 28px;
    height: 22px;
  }

  .menu-icon {
    height: 2.5px;
  }

  .mobile-menu-btn.active .menu-icon:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }

  .mobile-menu-btn.active .menu-icon:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

/* Hero Section */
#home {
  margin-top: 6.6rem;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  color: var(--text-primary);
  padding: 6rem 0 0;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--primary), var(--youtube-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--primary); /* Fallback color for older browsers */
  -webkit-text-fill-color: transparent;
  display: inline-block; /* Required for gradient text to work in some browsers */
  text-shadow: 0 2px 4px rgba(255, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-title:hover {
  text-shadow: 0 4px 8px rgba(255, 0, 0, 0.4);
  transform: scale(1.02);
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero-title {
    color: transparent; /* Only apply transparent color if text clipping is supported */
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  margin: 0 0 2rem;
}

.hero-features .feature {
  display: flex;
  align-items: center;
  /* margin-bottom: 1rem; */
  font-size: 1.4rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.hero-features .feature:hover {
  background: rgba(255, 0, 0, 0.05);
  transform: translateX(-5px);
}

.hero-features .feature i {
  color: var(--youtube-red);
  margin-left: 0.75rem;
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.hero-features .feature:hover i {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Image Slider */
.heroImageSlider {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--youtube-red);
}

.heroBannerImage {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.05);
  border-radius: var(--radius-lg);
}

.heroBannerImage.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.heroBannerImage:not(.active) {
  transform: scale(0.95);
}

/* Hero Image Hover Effect */
.heroImageSlider:hover .heroBannerImage.active {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

/* Animation for smooth crossfade */
@keyframes heroImageFade {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.heroBannerImage.fadeIn {
  animation: heroImageFade 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.heroBannerImage.fadeIn {
  animation: heroImageFade 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-waves svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.hero-waves .shape-fill {
  fill: var(--background);
  filter: drop-shadow(0 -5px 10px rgba(255, 0, 0, 0.1));
}

/* Responsive Hero Section */
@media (max-width: 992px) {
  .hero-container {
    padding-top: 6rem;
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 3rem;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-features .feature {
    justify-content: center;
  }

  .heroImageSlider {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .heroImageSlider {
    max-width: 100%;
    width: 100%;
    margin: 0 -1rem; /* Extend beyond container padding */
    border-radius: 0; /* Remove border radius for full width */
  }

  .heroBannerImage {
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
  }

  .hero-image {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .heroImageSlider {
    max-width: 100%;
    width: 100vw;
    margin: 0 calc(-50vw + 50%);
    border-radius: 0;
  }

  .heroBannerImage {
    border-radius: 0;
  }

  .hero-container {
    overflow: hidden;
  }
}

/* Ticker Bar */
.ticker-bar {
  background: var(--youtube-red);
  color: white;
  padding: 0.75rem 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001; /* Higher than header */
  box-shadow: var(--shadow-red);
  font-weight: 600;
  height: 40px; /* Fixed height */
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.ticker-bar:hover {
  background: var(--youtube-red-dark);
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.5);
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  margin: 0 2.5rem;
  font-size: 0.95rem;
  color: white;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.ticker-item:hover {
  color: #ffffff;
  transform: scale(1.05);
}

.ticker-item i {
  margin-left: 0.5rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.ticker-item:hover i {
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

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

/* Pause animation on hover */
.ticker-bar:hover .ticker-content {
  animation-play-state: paused;
}

/* Responsive Ticker */
@media (max-width: 768px) {
  .ticker-item {
    margin: 0 1.5rem;
    font-size: 0.85rem;
  }

  .ticker-item i {
    font-size: 1rem;
  }

  .ticker-content {
    animation-duration: 10s;
  }
}

@media (max-width: 576px) {
  .ticker-bar {
    padding: 0.5rem 0;
  }

  .ticker-item {
    margin: 0 1rem;
    font-size: 0.8rem;
  }

  .ticker-item i {
    font-size: 1rem;
  }

  .ticker-content {
    animation-duration: 100s;
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

/* AOS Custom Styles */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

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

/* Body styles are now in the :root section */

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.main {
  min-height: 100vh;
  position: relative;
}

/* Section title styles are now in the base styles */

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.features-section .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.1);
  color: var(--youtube-red);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.feature-card h3 {
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
  font-size: 1.3rem;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--background) 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.pricing-section .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

/* .pricing-grid::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--youtube-red), transparent);
} */

.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-md);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border: 2px solid var(--youtube-red);
  transform: scale(1.03);
  z-index: 1;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.06) translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}

.popular-tag {
  position: absolute;
  top: 20px;
  left: -10px;
  background: var(--youtube-red);
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing-header {
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.package-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.pricing-card:hover .package-image {
  transform: scale(1.05);
}

.pricing-header h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  margin: 1.5rem 0;
}

.price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.price .amount span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price .period {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.pricing-features {
  padding: 0 2rem 2rem;
}

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

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

.pricing-features li i {
  color: var(--youtube-red);
  margin-left: 0.75rem;
  font-size: 0.9rem;
}

.pricing-card .btn {
  display: block;
  width: calc(100% - 4rem);
  margin: 0 2rem 2rem;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  font-size: 1.3rem;
  border-radius: var(--radius-md);
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-note i {
  color: var(--youtube-red);
  margin-left: 0.5rem;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1.02);
  }

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

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

@media (max-width: 480px) {
  .pricing-header {
    padding: 1.5rem 1rem;
  }

  .pricing-features {
    padding: 0 1.5rem 1.5rem;
  }

  .pricing-card .btn {
    width: calc(100% - 2rem);
    margin: 0 1rem 1.5rem;
  }
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(245, 182, 56, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 182, 56, 0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f5b638, #e67e22);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(245, 182, 56, 0.3);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(245, 182, 56, 0.1) 0%,
    rgba(230, 126, 34, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--youtube-red);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
  background: var(--gradient-youtube);
  color: #ffffff;
}

.feature-title {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-description {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Best Package Section */
.best-package-section {
  padding: 5rem 0;
  background: var(--gradient-secondary);
  position: relative;
  overflow: hidden;
}

.best-package-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    0deg,
    rgba(0, 27, 61, 1) 0%,
    rgba(0, 27, 61, 0) 100%
  );
  z-index: 0;
}

.section-subtitle {
  color: #a0a0a0;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.6;
}

.package-recommendations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.recommendation-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.recommendation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(38, 198, 218, 0.03) 0%,
    rgba(0, 172, 193, 0.03) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.recommendation-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-cyan);
  border-color: var(--primary);
}

.recommendation-card:hover::before {
  opacity: 1;
}

/* .recommendation-icon intentionally left without extra styles; uses utility/icon sizing elsewhere */

/* YouTube Premium Comparison Cards */
.youtube-comparison-cards {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.comparison-card {
  background: #f9fafb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 180, 166, 0.1);
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.comparison-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 180, 166, 0.2);
  position: relative;
  transform: scale(1.05);
  z-index: 2;
}

.comparison-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 180, 166, 0.3);
}

.comparison-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.card-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  z-index: 3;
}

.card-header {
  padding: 2rem 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 180, 166, 0.1);
}

.card-title {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.card-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

.card-content {
  padding: 1.5rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 1.2rem;
  min-width: 24px;
  margin-top: 3px;
}

.feature-icon.positive {
  color: var(--youtube-red);
}

.feature-icon.negative {
  color: var(--error);
}

.feature-item span {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
}

/* Individual Plan Features Section */
.individual-features-section {
  margin: 4rem 0 2rem;
  text-align: center;
}

.individual-features-section .section-subtitle {
  color: #f5f9f9;
  font: bolder;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: #f9fafb;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 180, 166, 0.1);
  box-shadow: 0 4px 10px rgba(0, 180, 166, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--youtube-red);
}

.feature-icon-large {
  font-size: 2rem;
  color: var(--youtube-red);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.feature-card:hover .feature-icon-large {
  transform: scale(1.1);
  color: var(--youtube-red);
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.feature-card p {
  color: var(--text-primary);
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
}

.feature-card:hover p {
  color: var(--text-primary);
}

/* Responsive adjustments */
@media (min-width: 992px) {
  .youtube-comparison-cards {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .comparison-card.featured {
    transform: scale(1.05);
  }

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

@media (max-width: 768px) {
  .youtube-comparison-cards {
    flex-direction: column;
    align-items: center;
  }

  .comparison-card {
    max-width: 100%;
  }

  .comparison-card.featured {
    transform: scale(1);
  }

  .comparison-card.featured:hover {
    transform: scale(1) translateY(-5px);
  }

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

.recommendation-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.9);
}

.recommendation-card:hover .recommendation-icon {
  transform: scale(1.05) translateY(-5px);
  box-shadow: var(--shadow-cyan);
}

.recommendation-question {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.recommendation-answer {
  color: var(--text-secondary);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.9;
}

.recommendation-features {
  text-align: right;
  margin: 0;
  padding: 0.5rem 0;
}

.recommendation-features p {
  color: #d1d5db;
  margin: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
  line-height: 1.6;
  padding: 0.5rem 0;
}

.recommendation-features span {
  margin-right: 10px;
  flex: 1;
  text-align: right;
}

.recommendation-features i {
  color: var(--youtube-red);
  font-size: 1.3rem;
  margin-left: 0.75rem;
  min-width: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.recommendation-card:hover .recommendation-features p {
  color: #ffffff;
  transform: translateX(-5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .recommendation-question {
    font-size: 1.5rem;
  }

  .recommendation-answer {
    font-size: 1.3rem;
  }

  .recommendation-features p {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .recommendation-question {
    font-size: 1.6rem;
  }

  .recommendation-answer {
    font-size: 1.3rem;
  }

  .recommendation-features p {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }

  .recommendation-features i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .recommendation-question {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .recommendation-answer {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .recommendation-features p {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
  }
  .recommendation-features p span {
    font-size: 1.3rem;
  }
  .recommendation-features i {
    font-size: 1.2rem;
  }
}

.recommendation-button {
  display: inline-block;
  background: linear-gradient(to right, #4e73df, #224abe);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.recommendation-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #224abe, #4e73df);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  opacity: 0;
}

.recommendation-button:hover:before {
  width: 100%;
  opacity: 1;
}

.recommendation-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(34, 74, 190, 0.3);
}

.social-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0 8px 12px;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link i {
  margin-left: 8px;
  font-size: 1.2rem;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.social-link:active {
  transform: translateY(0);
}

/* Specific social media colors */
.social-link.tiktok {
  background: linear-gradient(45deg, #fe2c56ad, #000000a7, #25f4eda3);
  color: #ffffff;
}

.social-link.tiktok i {
  background: linear-gradient(45deg, #25f4ee, #000000, #fe2c55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-link.email {
  background: #ff004015;
}

.social-link.instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}

.social-link.whatsapp {
  background: #1da951;
}

.social-link.telegram {
  background: #0088cc;
}

.social-link.snapchat {
  background: #fffc00;
  color: #000;
}

.social-link.twitter {
  background: #000000;
}

/* YouTube Premium Social Link */
.social-link.youtube {
  background: var(--gradient-youtube);
  box-shadow: var(--shadow-red);
}

.social-link.youtube:hover {
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
  transform: translateY(-3px);
}

.social-link.youtube i {
  color: white;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10 L70,10 L90,50 L70,90 L30,90 L10,50 Z" fill="none" stroke="rgba(38, 198, 218, 0.03)" stroke-width="1"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding: 2rem 0 0;
}

.section-title {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0.9;
}

.package-title {
  color: var(--text-primary);
  font-size: 1.8rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--card-bg);
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .package-title {
    font-size: 1.5rem;
    padding: 0.8rem 1.5rem;
  }
}

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

  .section-subtitle {
    font-size: 1rem;
  }

  .package-title {
    font-size: 1.3rem;
    padding: 0.6rem 1.2rem;
  }
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  perspective: 1000px;
}

.reason-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  transform-style: preserve-3d;
  transform: translateZ(0);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.reason-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(38, 198, 218, 0.1) 0%,
    rgba(0, 172, 193, 0.1) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reason-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-cyan);
  border-color: var(--primary);
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-cyan);
}

.reason-card:hover .reason-icon {
  transform: rotateY(180deg);
  background: linear-gradient(
    135deg,
    var(--youtube-red-dark) 0%,
    var(--youtube-red) 100%
  );
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.reason-content {
  text-align: right;
  flex: 1;
}

.reason-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.reason-content p {
  color: var(--text-primary);
  font-size: 1.3rem;
  line-height: 1.7;
  transition: all 0.3s ease 0.1s;
}

.reason-card:hover h3 {
  color: var(--text-primary);
}

.reason-card:hover p {
  color: var(--text-primary);
}

.reason-hover {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--youtube-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reason-card:hover .reason-hover {
  right: 15px;
  opacity: 1;
}

.cta-container {
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

/* Pulse Animation for CTA Button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem !important;
  transition: all 0.3s ease !important;
}

.pulse-animation:hover {
  animation: none;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-red) !important;
}

.pulse-animation i {
  transition: transform 0.3s ease;
}

.pulse-animation:hover i {
  transform: translateX(-5px);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #f5b638, #e67e22);
  color: #1c1619;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e67e22, #f5b638);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}

.cta-button:hover::before {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .package-recommendations {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .recommendation-card.featured {
    transform: none;
  }

  .recommendation-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    padding: 1.25rem;
    text-align: right;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0;
    font-size: 1.8rem;
    flex-shrink: 0;
  }

  .feature-title {
    font-size: 1.3rem;
    margin: 1rem 0 0.75rem;
  }

  .feature-description {
    margin: 0 auto;
    max-width: 90%;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin-top: 100px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #1c1619; /* Fallback background color */
  box-sizing: border-box;
}

/* Reset any default spacing from parent elements */
.main > .hero:first-child {
  margin-top: 0;
}

.uouprem-hero {
  min-height: 100vh;
  height: auto;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-image {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
}

/* For desktops and larger screens */
@media (min-width: 992px) {
  .hero-banner-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
  }
}

/* For mobile and tablet devices */
@media (max-width: 991px) {
  .hero {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 10rem !important;
  }

  .hero-banner {
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-banner-image {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  .uouprem-hero {
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Reset any potential spacing from parent elements */
  .main > .hero:first-child {
    margin-top: 0 !important;
  }
}

.hero-slogan {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 2;
  padding: 0 1rem;
  pointer-events: none;
}

.hero-slogan h1 {
  color: #f5b638;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.3;
}

/* New Content Section */
.new-content-section {
  background: #1c1619;
  padding: 3rem 1rem;
  text-align: center;
}

.new-content-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.content-subtitle {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-youtube);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-red);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
  background: linear-gradient(
    135deg,
    var(--youtube-red-dark),
    var(--youtube-red)
  );
  color: white;
}

.cta-button:hover::before {
  left: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    margin-top: 10rm;
  }
  .hero-slogan h1 {
    font-size: 2.2rem;
  }

  .content-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    margin-top: 10rm;
  }
  .hero-slogan h1 {
    font-size: 1.8rem;
  }

  .content-subtitle {
    font-size: 1.1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-top: 10rm;
  }
  .hero-slogan h1 {
    font-size: 1.5rem;
  }

  .content-subtitle {
    font-size: 1rem;
  }

  .new-content-section {
    padding: 2rem 1rem;
  }
}

/* Pricing Sections */
.pricing-section {
  padding: 1rem 0;
  background: var(--gradient-secondary);
}

.section-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(245, 182, 56, 0.7));
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transform-origin: center;
  animation: pulse 2s infinite;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

/* Ensure all cards have equal height */
.pricing-grid .pricing-card,
.pricing-grid .modern-card,
.pricing-grid .mini-subscription-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 100%;
  backdrop-filter: blur(10px);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-cyan);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
}

.card-features {
  margin: 0;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  color: #e5e7eb;
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  transition: all 0.3s ease;
  text-align: right;
  margin: 0 0.5rem;
}

.card-features li i {
  color: var(--youtube-red);
  font-size: 1.5rem;
  min-width: 1.2rem;
  text-align: center;
  margin-top: 0.25rem;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.card-features li:hover {
  color: var(--primary);
}

.card-features li:hover i {
  transform: scale(1.2);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments for features */
@media (max-width: 768px) {
  .card-features li {
    font-size: 1.4rem;
    padding: 0.3rem 0;
    margin: 0 0.3rem;
  }

  .card-features {
    margin: 1rem 0;
  }
}

.card-title {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.card-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.original-price {
  color: #ffffff;
  text-decoration: line-through;
  font-size: 1.5rem;
}

.current-price {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.discount-badge {
  background: #dc2626;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
}

.add-to-cart-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-cyan);
}

.add-to-cart-btn:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  transform: translateY(-1px);
}

.card-cta-button {
  display: inline-block;
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  /* text-align: center; */
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  align-self: center;
  box-shadow: var(--shadow-cyan);
}

.card-cta-button:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(38, 198, 218, 0.4);
}

.comparison-button {
  display: inline-block;
  background: var(--gradient-youtube);
  color: white;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}

.comparison-button::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;
}

.comparison-button:hover {
  background: linear-gradient(
    135deg,
    var(--youtube-red-dark) 0%,
    var(--youtube-red) 100%
  );
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
  color: white;
}

.comparison-button:hover::before {
  left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .comparison-button {
    padding: 0.7rem 2rem;
    font-size: 1.1rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: rgba(38, 198, 218, 0.05);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto 0;
  padding: 0.5rem;
  width: 100%;
  max-width: 1200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .social-link {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(245, 182, 56, 0.1);
  border: 2px solid rgba(245, 182, 56, 0.3);
  border-radius: 12px;
  color: #f5b638;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(245, 182, 56, 0.2);
  border-color: #f5b638;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 182, 56, 0.3);
}

.social-link i {
  font-size: 1.5rem;
}

.snapchat:hover {
  border-color: #fffc00;
  color: #fffc00;
}

.instagram:hover {
  border-color: #e4405f;
  color: #e4405f;
}

.twitter:hover {
  border-color: #1da1f2;
  color: #1da1f2;
}

.whatsapp:hover {
  border-color: #25d366;
  color: #25d366;
}

.telegram:hover {
  border-color: #0088cc;
  color: #0088cc;
}

/* Footer */
.footer {
  background: var(--secondary);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(38, 198, 218, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-links h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(38, 198, 218, 0.1);
  color: #9ca3af;
}

/* Payment Methods */
.payments {
  padding: 2rem 0;
  background: rgba(38, 198, 218, 0.03);
}

.payments-container {
  max-width: 1200px;
  margin: 0 auto;
}

.payments-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.payment-item {
  transition: transform 0.3s ease;
}

.payment-item:hover {
  transform: scale(1.1);
}

.payment-image {
  height: 50px;
  max-width: 100px;
  object-fit: contain;
  border-radius: 8px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-cyan);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Comparison Table */
.comparison {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    rgba(255, 0, 0, 0.05) 100%
  );
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.comparison-subtitle {
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 500;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-cyan);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(38, 198, 218, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.comparison-table th {
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid rgba(38, 198, 218, 0.5);
}

.feature-column {
  text-align: right;
  background: rgba(38, 198, 218, 0.2) !important;
  color: var(--primary);
  font-weight: 700;
  border-right: 4px solid var(--primary);
}

.featured-column {
  background: var(--gradient-primary) !important;
  position: relative;
  box-shadow: var(--shadow-cyan);
  border: 2px solid rgba(38, 198, 218, 0.3);
}

.featured-column::before {
  content: none;
  display: none;
}

.comparison-table td {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 500;
  font-size: 1.5rem;
}

/* Tablet package styling */
.tablet-column {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%) !important;
  position: relative;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
  border: 2px solid rgba(255, 152, 0, 0.3);
}

.tablet-cell {
  background: rgba(255, 152, 0, 0.15);
  color: #ffffff;
  font-weight: 700;
  border-left: 3px solid #ff9800;
  border-right: 3px solid #ff9800;
}

.tablet-cell:hover {
  background: rgba(255, 152, 0, 0.25);
}

.comparison-table td:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.02);
}

.featured-cell {
  background: rgba(38, 198, 218, 0.15); /* درجة خفيفة من الأزرق */
  color: #ffffff;
  font-weight: 700;
  border-left: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
}

.featured-cell:hover {
  background: rgba(38, 198, 218, 0.25); /* درجة أغمق عند الهوفر */
}

.feature-name {
  background: rgba(38, 198, 218, 0.15) !important;
  color: var(--primary) !important;
  font-weight: 700;
  text-align: right;
  border-right: 4px solid var(--primary);
  font-size: 1.1rem;
}

.status-yes {
  background: linear-gradient(135deg, #24c78e, #10b981);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(36, 199, 142, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-no {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(239, 68, 68, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price {
  font-size: 1.4rem;
}

/* YouTube Premium Comparison Table */
.youtube-comparison-table-wrapper {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-red);
  background: #f9fafb;
  backdrop-filter: blur(10px);
  border: 1px solid var(--youtube-red);
}

.youtube-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: 600px;
}

.youtube-comparison-table th,
.youtube-comparison-table td {
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(0, 180, 166, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.youtube-comparison-table th {
  background: var(--gradient-youtube);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid rgba(255, 0, 0, 0.5);
}

.feature-column {
  text-align: right;
  background: rgb(255, 0, 0) !important;
  color: black;
  font-weight: 700;
  border-right: 4px solid var(--youtube-red);
}

.featured-column {
  background: var(--gradient-youtube) !important;
  position: relative;
  box-shadow: var(--shadow-red);
  border: 2px solid rgba(255, 0, 0, 0.252);
}

.featured-column::before {
  content: none;
  display: none;
}

.youtube-comparison-table td {
  color: var(--text-primary);
  background: #f9fafb;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: right;
  border: 1px solid rgba(255, 0, 0, 0.15);
}

.youtube-comparison-table td:hover {
  background: rgba(255, 0, 0, 0.05);
  transform: scale(1.01);
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.1);
}

.featured-cell {
  background: rgba(0, 255, 162, 0.25) !important;
  font-weight: 700;
  border-left: 3px solid var(--youtube-red);
  border-right: 3px solid var(--youtube-red);
}

.featured-cell:hover {
  background: rgba(255, 0, 0, 0.15) !important;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.1);
}

.feature-name {
  background: rgba(0, 255, 204, 0.222) !important;
  color: black !important;
  font-weight: 700;
  text-align: right;
  border-right: 4px solid var(--youtube-red);
  font-size: 1.1rem;
}

.negative-icon {
  color: var(--error);
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.positive-icon {
  color: green;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(13, 255, 0, 0.3);
}

.positive-icon:hover,
.negative-icon:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(0, 255, 72, 0.5);
}

/* Responsive adjustments for comparison table */
@media (max-width: 768px) {
  .youtube-comparison-table-wrapper {
    margin: 2rem 0;
  }

  .youtube-comparison-table th,
  .youtube-comparison-table td {
    padding: 1rem 0.75rem;
    font-size: 1.1rem;
  }

  .feature-name {
    font-size: 1rem;
  }

  .youtube-comparison-table {
    min-width: 500px;
  }
}

.price {
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.price-row td:nth-child(2) .price {
  color: #60a5fa; /* أزرق سماوي لـ IPTV Smarters */
}

.price-row td:nth-child(3) .price {
  color: #a855f7; /* بنفسجي فاتح لـ Hulk Player */
}

.price-row td:nth-child(4) .price {
  color: #06b6d4; /* تركواز لـ Alfa Premium */
}

.price-row td:nth-child(5) .price {
  color: #94a3b8; /* رمادي مزرق لـ YouTube Premium */
}

.featured-price {
  color: #a855f7;
  font-size: 1.5rem;
}

.price-row {
  border-top: 4px solid var(--primary);
  background: rgba(38, 198, 218, 0.08);
}

.price-row .featured-cell {
  background: rgba(38, 198, 218, 0.2);
  border-top: 4px solid var(--primary);
}

.comparison-cta {
  text-align: center;
  margin: 3rem auto 0;
  padding: 2rem;
  max-width: 800px;
  background: rgba(28, 22, 25, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(23, 162, 184, 0.2);
}

.cta-text {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.cta-timer .countdown-text {
  color: var(--youtube-red);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-text {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

  .cta-timer .countdown-text {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }

  .comparison-cta {
    padding: 1.5rem 1rem;
    margin: 2rem 1rem 0;
  }
}

/* Section Header Mobile Styles */
@media (max-width: 767px) {
  .section-header {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0;
  }

  .section-icon {
    margin: 0 auto 0.75rem;
    display: block;
    width: 48px;
    filter: drop-shadow(0 0 8px rgba(38, 198, 218, 0.7));
    transition: all 0.3s ease-in-out;
    height: 48px;
  }

  .section-title {
    margin: 0.4rem 0 0.8rem;
    width: 100%;
  }
}

/* ======================
   Mobile First Responsive Design
   ====================== */

/* Base mobile styles (applies to all screens) */
html {
  font-size: 14px; /* Base font size for mobile */
}

body {
  font-size: 1rem;
  line-height: 1.5;
}

/* Container adjustments */
.container,
.contact-container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

/* Hero Section - Responsive Adjustments */
.hero {
  min-height: 60vh;
  padding: 0;
  margin: 0;
}

.hero-title {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.cta-primary,
.cta-secondary {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-grid {
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 0 1rem;
  margin: 0 auto;
  max-width: 100%;
}

.pricing-card {
  min-height: 400px;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Features Section */
.features-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0 1rem;
}

.feature-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  text-align: right;
}

/* FAQ Section */
.faq {
  padding: 5rem 1.5rem;
  background-color: #1c1619;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2125;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f5b638;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(245, 182, 56, 0.1);
}

.accordion-header i:first-child {
  margin-left: 12px;
  color: #f5b638;
  font-size: 1.2rem;
}

.accordion-header i:last-child {
  margin-right: auto;
  margin-left: 0;
  transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] i:last-child {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #2a2125;
  color: #e5e7eb;
  line-height: 1.6;
  font-size: 1rem;
}

.accordion-panel p {
  font-size: 1.2rem;
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

.accordion-panel ul,
.accordion-panel ol {
  padding-right: 2rem;
  margin: 0.5rem 0 1rem 0;
  font-size: 1rem;
}

.accordion-panel li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  position: relative;
  padding-right: 1.5rem;
  font-size: 1rem;
}

.accordion-panel li:before {
  content: "•";
  color: var(--primary-dark);
  font-weight: bold;
  position: absolute;
  right: 0;
}

/* CTA Section */
.cta {
  padding: 3rem 1rem;
  text-align: center;
  background: var(--gradient-secondary);
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-youtube);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 1rem 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-cyan);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(38, 198, 218, 0.4);
  color: white;
}

.cta-timer {
  margin-top: 2.5rem;
  color: var(--text-primary);
}

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

.countdown-item {
  background: rgba(38, 198, 218, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  min-width: 80px;
  border: 1px solid var(--card-border);
}

.countdown-item span {
  display: block;
  line-height: 1.4;
}

.countdown-item span:first-child {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* Testimonials */
.testimonials {
  padding: 4rem 1rem;
  background: var(--gradient-secondary);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
  margin: 0;
  min-width: auto;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-cyan);
  border-color: var(--primary);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(255, 0, 0, 0.2);
  font-size: 2.5rem;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  color: var(--youtube-red);
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  transform: scale(1.1);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--primary);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.testimonial-rating {
  color: var(--youtube-red);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.2rem;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-rating {
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  transform: scale(1.05);
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.2rem;
  text-align: center;
}

/* FAQ Section */
.faq {
  padding: 4rem 1rem;
  background: var(--gradient-secondary);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.accordion {
  margin-top: 2rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: rgba(38, 198, 218, 0.05);
  border: none;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(38, 198, 218, 0.1);
}

.accordion-header i:first-child {
  margin-left: 10px;
  color: var(--youtube-red);
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.accordion-header:hover i:first-child {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.accordion-header i:last-child {
  transition: transform 0.3s ease;
  color: var(--youtube-red);
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.accordion-header:hover i:last-child {
  transform: rotate(90deg);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.accordion-header[aria-expanded="true"] i:last-child {
  transform: rotate(45deg);
  color: var(--youtube-red);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(38, 198, 218, 0.03);
  color: var(--text-secondary);
}

.accordion-panel p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Styles */
@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .accordion-header {
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
  }
}

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

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-text {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
  }

  .countdown-item {
    min-width: 100px;
    padding: 1rem 1.5rem;
  }

  .countdown-item span:first-child {
    font-size: 2.2rem;
  }
}

.testimonial-text {
  font-size: 01.4rem;
}

/* Contact Form */
.contact-form {
  padding: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
}

/* Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  padding: 0 1rem;
}

table {
  min-width: 600px; /* Forces horizontal scroll on small screens */
  width: 100%;
  border-collapse: collapse;
}

/* Social Links */
.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 0 0.5rem;
  margin: 1rem 0;
}

.social-link {
  flex-direction: column;
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-size: 0.8rem;
  gap: 0.25rem;
  min-height: 80px;
  justify-content: center;
}

.social-link i {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

/* Hide elements on mobile */
.mobile-hide {
  display: none;
}

/* ======================
   Tablet Styles (768px and up)
   ====================== */
@media (min-width: 768px) {
  html {
    font-size: 15px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    padding: 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-links {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }

  .cta-primary,
  .cta-secondary {
    width: auto;
    min-width: 180px;
  }
}

/* ======================
   Desktop Styles (1024px and up)
   ====================== */
@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .mobile-hide {
    display: block;
  }
}

/* ======================
   Large Desktop (1200px and up)
   ====================== */
@media (min-width: 1200px) {
  .container,
  .contact-container {
    max-width: 1200px;
    padding: 0 2rem;
  }

  .pricing-grid {
    gap: 2rem;
  }
}

/* Hero banner full height */
.uouprem-hero {
  min-height: 100vh;
  height: 100vh;
  max-height: 100vh;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Make buttons touch-friendly on mobile */
button,
.btn,
a.btn,
input[type="submit"] {
  min-height: 44px;
  min-width: 44px;
}

/* Improve form touch targets */
label,
input,
select,
textarea,
button {
  touch-action: manipulation;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-primary {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.8),
    rgba(45, 212, 191, 0.8)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.cta-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.9),
    rgba(45, 212, 191, 0.9)
  );
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e5e7eb;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-points {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
  color: #cbd5e1;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-points i {
  color: #2dd4bf;
}

/* Payment Methods Section */
.payments {
  background: rgba(17, 24, 39, 0.8);
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.payments-container {
  max-width: 1200px;
  margin: 0 auto;
}

.payments-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  flex: 0 0 auto;
}

.payment-image {
  height: 40px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  border-radius: 0.25rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: brightness(0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.payment-image:hover {
  transform: scale(1.1);
  filter: brightness(1);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.hero-image-container {
  width: 100%;
  max-width: 1000px;
  position: relative;
  z-index: 5;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: #f72585;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

/* Pricing Section */
.pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1rem;
  position: relative;
}

/* Pricing Cards Grid */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1rem;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure cards take full width on mobile */
.pricing-card {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  min-height: 400px;
  padding: 1.5rem;
}

.pricing-grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .pricing-card {
    width: 100%;
    margin: 0;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    padding: 2rem;
    gap: 2rem;
  }

  .pricing-card {
    min-height: 450px;
  }
}

.pricing-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s;
  position: relative;
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(8px);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid #7c3aed;
  transform: scale(1.05);
}

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

.pricing-header {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0);
  color: #333333;
  position: relative;
  z-index: 2;
  text-align: center;
}

.pricing-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pricing-image:hover {
  transform: scale(1.05);
}

.pricing-header.featured {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #ffffff;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background-color: #22d3ee;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pricing-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.pricing-body {
  padding: 1.5rem;
  background-color: rgba(2, 6, 23, 0.6);
  position: relative;
  z-index: 2;
}

.pricing-price {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.pricing-price span {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2dd4bf;
}

.pricing-save {
  font-size: 0.875rem;
  color: #f72585;
  font-weight: bold;
  margin-top: 0.5rem;
}

.pricing-features {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
}

.feature-icon {
  color: var(--primary);
  margin-left: 0.75rem;
  font-size: 1.5rem;
}

.pricing-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem;
  border-radius: 0.5rem;
  font-weight: 700;
  background-color: #00648b;
  color: #e5e7eb;
  transition: all 0.3s;
}

.pricing-button:hover {
  background-color: #1f2937;
  transform: translateY(-3px);
}

.pricing-button.featured {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #ffffff;
}

.pricing-button.featured:hover {
  background: linear-gradient(135deg, #5b21b6, #6d28d9);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

.pricing-grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.payments-strip {
  gap: 2.5rem;
}

.payment-image {
  height: 50px;
  max-width: 100px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: brightness(0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.payment-image:hover {
  transform: scale(1.1);
  filter: brightness(1);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-youtube);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: var(--shadow-red);
}

.back-to-top:hover {
  background: linear-gradient(
    135deg,
    var(--youtube-red-dark),
    var(--youtube-red)
  );
  transform: translateY(0) scale(1.1);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:focus {
  outline: 2px solid var(--youtube-red);
  outline-offset: 3px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

/* Contact Cards with Glassmorphism */
.contact-cards {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.whatsapp-card:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.telegram-card:hover {
  border-color: rgba(0, 136, 204, 0.5);
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.2);
}

.contact-card i {
  font-size: 1.25rem;
}

.whatsapp-card i {
  color: #25d366;
}

.telegram-card i {
  color: #0088cc;
}

/* Section Icon Animations */
@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.7));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.9));
    transform: scale(1.05);
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.7));
    transform: scale(1);
  }
}

.section-icon {
  animation: pulse 3s infinite ease-in-out;
  transition: all 0.3s ease;
}

.section-icon:hover {
  filter: drop-shadow(0 0 20px rgba(255, 0, 0, 1)) !important;
  transform: scale(1.15) !important;
  animation: none;
}

/* Mini Subscription Card - Unified Styling */
.mini-subscription-card {
  background: linear-gradient(
    145deg,
    rgba(38, 198, 218, 0.1) 0%,
    rgba(0, 172, 193, 0.05) 100%
  );
  border: 2px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.mini-subscription-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: var(--shadow-cyan);
  background: linear-gradient(
    145deg,
    rgba(38, 198, 218, 0.15) 0%,
    rgba(0, 172, 193, 0.08) 100%
  );
}

.mini-subscription-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.mini-subscription-card .card-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0;
  line-height: 1.5;
  text-align: center;
}

.mini-subscription-card .card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  min-height: 50px;
  box-shadow: var(--shadow-sm);
}

.mini-subscription-card .card-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  color: white;
}

.pricing-card.mini-subscription-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(56, 122, 245, 0.15) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.pricing-card.mini-subscription-card:hover {
  transform: translateY(-5px) scale(0.97);
  border-color: #f5b638;
  box-shadow: 0 15px 35px rgba(245, 182, 56, 0.3);
}

.pricing-card.mini-subscription-card:hover::before {
  opacity: 1;
}

.pricing-card.mini-subscription-card .card-icon {
  width: 70px;
  height: 70px;
  background: rgba(28, 22, 25, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(245, 182, 56, 0.4);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card.mini-subscription-card .card-icon::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(245, 182, 56, 0.6);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.pricing-card.mini-subscription-card:hover .card-icon::after {
  opacity: 1;
  animation: spin 15s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.pricing-card.mini-subscription-card h3 {
  color: #f5b638;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0 0.5rem;
  position: relative;
  z-index: 2;
}

.pricing-card.mini-subscription-card .card-description {
  color: #a0a0a0;
  font-size: 01.4rem;
  margin: 0 0 1rem;
  line-height: 1.5;
  max-width: 90%;
  z-index: 2;
}

.pricing-card.mini-subscription-card .card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #f5b638, #e67e22);
  color: #1c1619;
  padding: 0.65rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  border: none;
  width: 85%;
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.pricing-card.mini-subscription-card .card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(230, 126, 34, 0.4);
}

.pricing-card.mini-subscription-card .card-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e67e22, #f5b638);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.pricing-card.mini-subscription-card .card-cta:hover::before {
  opacity: 1;
}

.mini-subscription-card .card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mini-subscription-card h3 {
  font-size: 1rem;
  color: #f5b638;
  margin: 0.5rem 0;
  font-weight: 600;
}

.mini-subscription-card .card-description {
  font-size: 0.85rem;
  color: #a0aec0;
  margin: 0.25rem 0 1rem;
  line-height: 1.4;
}

.mini-subscription-card .card-cta {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(245, 182, 56, 0.9),
    rgba(210, 140, 0, 0.9)
  );
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.mini-subscription-card .card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 182, 56, 0.3);
  background: linear-gradient(
    135deg,
    rgba(245, 182, 56, 1),
    rgba(210, 140, 0, 1)
  );
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mini-subscription-card {
    min-height: 180px;
  }

  .mini-subscription-card .card-icon {
    width: 60px;
    height: 60px;
    padding: 10px;
  }

  .mini-subscription-card h3 {
    font-size: 0.95rem;
  }

  /* .mini-subscription-card .card-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0.5rem 0;
  } */

  .mini-subscription-card .card-cta {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
}

.pricing-card.small-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(245, 182, 56, 0.1);
  border-color: rgba(245, 182, 56, 0.5);
}

.pricing-card.small-card .card-image {
  height: 80px;
  width: 80px;
  margin: 0 auto 1rem;
  padding: 10px;
  border-radius: 50%;
  background: rgba(245, 182, 56, 0.1);
  object-fit: contain;
}

.pricing-card.small-card .card-content {
  padding: 0;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-card.small-card .card-title {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #f5b638;
  min-height: auto;
}

.pricing-card.small-card .card-pricing {
  margin: 0.5rem 0 1rem;
}

.pricing-card.small-card .current-price {
  font-size: 01.5rem;
  color: #a0aec0;
  display: block;
}

.pricing-card.small-card .card-cta-button {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(245, 182, 56, 0.9),
    rgba(210, 140, 0, 0.9)
  );
  transition: all 0.3s ease;
  border-radius: 6px;
  align-self: center;
}

.pricing-card.small-card .card-cta-button:hover {
  background: linear-gradient(
    135deg,
    rgba(245, 182, 56, 1),
    rgba(210, 140, 0, 1)
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 182, 56, 0.3);
}

/* Animation for the small card */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.pricing-card.small-card:hover {
  animation: pulse 2s infinite;
}

/* Modern Product Cards - Unified Subscription Theme */
.modern-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.modern-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-cyan);
  border-color: var(--primary);
}

.modern-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(
    135deg,
    rgba(38, 198, 218, 0.1) 0%,
    rgba(0, 172, 193, 0.05) 100%
  );
  min-height: 580px;
}

.modern-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  z-index: 1;
}

.card-header {
  position: relative;
  padding: 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(38, 198, 218, 0.05) 0%,
    rgba(0, 172, 193, 0.02) 100%
  );
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-header .card-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.modern-card:hover .card-image {
  transform: scale(1.05) rotateY(5deg);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.card-badge {
  background: var(--gradient-primary);
  color: white;
}

.card-badge.gaming {
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  color: white;
}

.card-badge.featured {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: white;
  animation: pulse-badge 2s infinite;
}

.card-badge.tools {
  background: linear-gradient(135deg, #9c27b0 0%, #6a1b9a 100%);
  color: white;
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
  line-height: 1.3;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-description {
  color: var(--text-secondary);
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: center;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-features {
  flex-grow: 1;
  margin: 0;
}

.card-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 1.3rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.card-features li:hover {
  color: var(--primary);
  transform: translateX(-5px);
}

.card-features li i {
  color: var(--youtube-red);
  font-size: 1.2rem;
  min-width: 16px;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.card-features li:hover i {
  transform: scale(1.2);
  color: #ffffff;
}

.card-pricing {
  margin: 0;
  text-align: center;
}

.price-range,
.current-price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.original-price {
  font-size: 1.5 rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

.btn-modern,
.btn-featured {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-modern {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
  color: white;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
}

.btn-featured {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
  color: white;
  background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
}

.btn-modern::before,
.btn-featured::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;
}

.btn-modern:hover::before,
.btn-featured:hover::before {
  left: 100%;
}

/* Responsive Modern Cards */
@media (max-width: 768px) {
  .modern-card {
    margin-bottom: 1.5rem;
  }

  .card-header .card-image {
    max-width: 100%;
  }

  .card-content {
    padding: 0 1rem 1rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-card.small-card {
    max-width: 100%;
  }
}

/* Mobile responsive font sizes for better readability */
@media (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }

  p {
    font-size: 1.6rem;
  }

  li {
    font-size: 1.6rem;
  }

  span {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1.7rem;
  }

  .card-description {
    font-size: 1.6rem;
  }

  .comparison-table td {
    font-size: 1.2rem;
  }

  .comparison-table th {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1.7rem;
  }

  p {
    font-size: 1rem;
  }

  li {
    font-size: 1.7rem;
  }

  span {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 1.8rem;
  }

  .card-description {
    font-size: 1.7rem;
  }

  .comparison-table td {
    font-size: 1rem;
  }

  .comparison-table th {
    font-size: 0.9rem;
  }
}

/* Feature Icons - Updated to use YouTube red for emphasis */
.feature-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.1);
  color: var(--youtube-red);
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
  background: var(--gradient-youtube);
  color: #ffffff;
  box-shadow: var(--shadow-red);
}

.feature-icon-large {
  font-size: 2rem;
  color: var(--youtube-red);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-large {
  transform: scale(1.1);
  color: var(--youtube-red);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.feature-icon-small {
  width: 28px;
  height: 28px;
  background: var(--gradient-youtube);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(255, 0, 0, 0.2);
}

.feature-icon-small:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.besher-feature-item:hover .feature-icon-small {
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.feature-icon-small i {
  color: white;
  font-size: 0.8rem;
}

/* Reason Icons in Why Choose Us Section */
.reason-icon {
  width: 60px;
  height: 60px;
  background: var(--youtube-red);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-cyan);
}

.reason-card:hover .reason-icon {
  transform: rotateY(180deg);
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  box-shadow: 0 0 20px rgba(0, 180, 166, 0.5);
}

/* Add YouTube red to all feature icons across the site */
.hero-features .feature i,
.card-features li i,
.reason-content i,
.testimonial-rating i,
.accordion-header i:first-child {
  color: var(--youtube-red);
  transition: all 0.3s ease;
}

.hero-features .feature:hover i,
.card-features li:hover i,
.reason-content:hover i {
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

/* Accordion icons */
.accordion-header i:last-child {
  color: var(--youtube-red);
  transition: all 0.3s ease;
}

.accordion-header:hover i:last-child {
  transform: rotate(90deg);
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.accordion-header[aria-expanded="true"] i:last-child {
  transform: rotate(45deg);
  color: var(--youtube-red);
}

/* Tablet Package Styling */
.recommendation-card.tablet-package {
  border: 2px solid #ff9800;
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 152, 0, 0.1) 0%,
    rgba(245, 124, 0, 0.05) 100%
  );
}

.recommendation-card.tablet-package::before {
  background: linear-gradient(
    135deg,
    rgba(255, 152, 0, 0.15) 0%,
    rgba(245, 124, 0, 0.1) 100%
  );
}

.recommendation-card.tablet-package .recommendation-icon {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.recommendation-card.tablet-package:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 152, 0, 0.4);
  border-color: #ffa726;
}

.recommendation-card.tablet-package:hover .recommendation-icon {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5);
}

/* Responsive tablet package adjustments */
@media (max-width: 768px) {
  .recommendation-card.tablet-package {
    border: 1px solid #ff9800;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.2);
  }

  .recommendation-card.tablet-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
  }
}

/* YouTube Premium Package Styles - Enhanced with red accents */
.youtube-premium-card {
  background: linear-gradient(135deg, #282828 0%, #181818 100%);
  border: 2px solid var(--youtube-red);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
  transform: scale(1.02);
  position: relative;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.youtube-premium-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.youtube-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 0, 0, 0.1) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.youtube-premium-card:hover::before {
  opacity: 1;
}

.youtube-header {
  padding: 0;
  margin: 0;
}

.youtube-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: var(--gradient-youtube);
  color: white;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: all 0.3s ease;
}

.youtube-logo i {
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.youtube-logo:hover i {
  transform: scale(1.1);
}

.youtube-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.premium-badge {
  background: var(--gradient-youtube);
  color: white;
  font-weight: 800;
  text-shadow: none;
  animation: premium-glow 2s ease-in-out infinite;
}

@keyframes premium-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
  }
}

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

.btn-youtube-premium {
  background: var(--gradient-youtube);
  color: white;
  padding: 15px 30px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.btn-youtube-premium::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-youtube-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
  color: white;
}

.btn-youtube-premium:hover::before {
  left: 100%;
}

/* Besher Card YouTube Premium Styles */
.besher-card-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.besher-youtube-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  animation: float 4s ease-in-out infinite;
}

.besher-youtube-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--youtube-red);
}

.besher-card-header {
  position: relative;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 3px solid var(--youtube-red);
}

.besher-card-header .card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  padding: 1rem;
}

.besher-youtube-card:hover .card-image {
  transform: scale(1.05);
}

.besher-premium-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-youtube);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-red);
  box-shadow: var(--shadow-red);
  z-index: 2;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
  }
}

.besher-card-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.besher-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

.besher-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1rem;
  background: var(--gradient-youtube-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 0, 0, 0.15);
  margin: 0;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.besher-pricing:hover {
  box-shadow: var(--shadow-red);
  transform: translateY(-3px);
}

.price-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

.besher-pricing .original-price {
  font-size: 1.3rem;
  color: black;
  text-decoration: line-through;
  opacity: 0.7;
  margin: 0;
}

.besher-pricing .current-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--youtube-red);
  margin: 0;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
}

.besher-discount {
  background: var(--gradient-youtube);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-red);
  white-space: nowrap;
  animation: pulse-red 2s infinite;
}

.besher-description {
  text-align: center;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  padding: 0 0.5rem;
}

/* Besher Features Grid */
.besher-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0;
}

.besher-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 0, 0, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 50px;
}

.besher-feature-item:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: var(--youtube-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.1);
}

.besher-feature-item span {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.3;
  flex: 1;
}

/* Besher YouTube Button */
.btn-besher-youtube {
  background: var(--gradient-youtube);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
  margin: 0;
  line-height: 1.2;
}

.btn-besher-youtube::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-besher-youtube:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
  color: white;
}

.btn-besher-youtube:hover::before {
  left: 100%;
}

/* Responsive Design for Besher Card */
@media (max-width: 768px) {
  .besher-card-grid {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .besher-card-content {
    padding: 1.5rem 1rem;
    gap: 1.25rem;
  }

  .besher-features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .besher-pricing {
    flex-direction: row;
    gap: 1rem;
    text-align: center;
    padding: 1rem;
  }

  .price-container {
    align-items: center;
  }

  .besher-card-header {
    height: 180px;
  }

  .besher-card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .besher-card-grid {
    padding: 1rem 0.5rem;
  }

  .besher-card-content {
    padding: 1rem 0.75rem;
    gap: 1rem;
  }

  .besher-card-header {
    height: 160px;
  }

  .besher-card-title {
    font-size: 1.2rem;
  }

  .besher-feature-item {
    padding: 0.5rem;
    gap: 0.4rem;
  }

  .feature-icon-small {
    width: 24px;
    height: 24px;
  }

  .feature-icon-small i {
    font-size: 0.75rem;
  }

  .besher-feature-item span {
    font-size: 1.6rem;
  }

  .btn-besher-youtube {
    padding: 0.875rem 1rem;
    font-size: 1.3rem;
  }
}

/* Besher Card YouTube Premium Styles */
.besher-card-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.besher-youtube-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.besher-youtube-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--youtube-red);
}

.besher-card-header {
  position: relative;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.besher-card-header .card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  padding: 1rem;
}

.besher-youtube-card:hover .card-image {
  transform: scale(1.05);
}

.besher-premium-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-youtube);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-red);
  z-index: 2;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
  }
}

.besher-card-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.besher-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

.besher-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1rem;
  background: var(--gradient-youtube-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 0, 0, 0.15);
  margin: 0;
}

.price-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

.besher-pricing .original-price {
  font-size: 1.2rem;
  color: black;
  text-decoration: line-through;
  opacity: 0.7;
  margin: 0;
}

.besher-pricing .current-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--youtube-red);
  margin: 0;
  line-height: 1;
}

.besher-discount {
  background: var(--gradient-youtube);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-red);
  white-space: nowrap;
  animation: pulse-red 2s infinite;
}

.besher-description {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  padding: 0 0.5rem;
}

/* Besher Features Grid */
.besher-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0;
}

.besher-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 0, 0, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 50px;
}

.besher-feature-item:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: var(--youtube-red);
  transform: translateY(-1px);
}

.besher-feature-item span {
  font-size: 1.6rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.3;
  flex: 1;
}

/* Besher YouTube Button */
.btn-besher-youtube {
  background: var(--gradient-youtube);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
  margin: 0;
  line-height: 1.2;
}

.btn-besher-youtube::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-besher-youtube:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
  color: white;
}

.btn-besher-youtube:hover::before {
  left: 100%;
}

/* Responsive Design for Besher Card */
@media (max-width: 768px) {
  .besher-card-grid {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .besher-card-content {
    padding: 1.5rem 1rem;
    gap: 1.25rem;
  }

  .besher-features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .besher-pricing {
    flex-direction: row;
    gap: 1rem;
    text-align: center;
    padding: 1rem;
  }

  .price-container {
    align-items: center;
  }

  .besher-card-header {
    height: 180px;
  }

  .besher-card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .besher-card-grid {
    padding: 1rem 0.5rem;
  }

  .besher-card-content {
    padding: 1rem 0.75rem;
    gap: 1rem;
  }

  .besher-card-header {
    height: 160px;
  }

  .besher-card-title {
    font-size: 1.2rem;
  }

  .besher-feature-item {
    padding: 0.5rem;
    gap: 0.4rem;
  }

  .feature-icon-small {
    width: 24px;
    height: 24px;
  }

  .feature-icon-small i {
    font-size: 0.75rem;
  }

  .besher-feature-item span {
    font-size: 1.6rem;
  }

  .btn-besher-youtube {
    padding: 0.875rem 1rem;
    font-size: 1.3rem;
  }
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(0, 180, 166, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 180, 166, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(0, 180, 166, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}

/* YouTube Premium card responsive adjustments */
@media (max-width: 768px) {
  .youtube-premium-card {
    transform: scale(1);
    max-width: 100%;
  }

  .youtube-logo {
    padding: 15px;
  }

  .youtube-logo i {
    font-size: 2rem;
  }

  .youtube-logo span {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .youtube-logo {
    padding: 12px;
  }

  .youtube-logo i {
    font-size: 1.8rem;
  }

  .youtube-logo span {
    font-size: 1.1rem;
  }
}
