:root {
  /* Color Palette */
  --primary: #ff5722; /* Orange */
  --primary-dark: #e64a19; /* Darker Orange */
  --secondary: #2196f3; /* Blue */
  --accent: #ffc107; /* Amber */
  --background: #121212; /* Dark background */
  --surface: #1e1e1e; /* Slightly lighter dark */
  --text-primary: #cdcdcd; /* White text */
  --text-secondary: #dcdcdc; /* Light gray text */
  --error: #f44336; /* Red */
  --success: #4caf50; /* Green */
  --warning: #ff9800; /* Orange */

  /* 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: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15), 0 5px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* 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-color: var(--background);
  color: var(--text-primary);
  line-height: var(--line-height-base);
  text-align: right;
  direction: rtl;
  overflow-x: hidden;
}

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);
}

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(--primary), var(--accent));
  border-radius: 2px;
}

.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: 1rem;
  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(--primary), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(255, 87, 34, 0.1);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 40px; /* Height of the ticker bar */
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateY(0);
  will-change: transform, background, padding, box-shadow;
}

.header.scrolled {
  background: rgba(10, 10, 20, 0.98);
  padding: 5px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* 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);
}

/* 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(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 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: linear-gradient(135deg, #f5b638, #e67e22);
  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: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.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(230, 126, 34, 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;
  }
}

/* Print styles */
@media print {
  .header,
  .back-to-top {
    display: none !important;
  }

  html {
    scroll-padding-top: 0;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  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: linear-gradient(90deg, #f5b638, #e67e22);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f5b638; /* 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 */
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .logo-text {
    color: transparent; /* Only apply transparent color if text clipping is supported */
  }
}

.logo-dot {
  color: #f5b638;
  font-size: 2.2rem;
  line-height: 1;
  margin-right: 2px;
  transition: all 0.3s ease;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.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: rgba(255, 255, 255, 0.9);
  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(245, 182, 56, 0.1),
    rgba(230, 126, 34, 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: #fff;
}

/* Hide focus styles when using mouse */
body.using-mouse .nav-link:focus:not(:focus-visible) {
  outline: none;
}

.nav-link i {
  margin-left: 6px;
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.nav-link:hover i {
  transform: translateX(-3px);
}

.nav-item:not(:last-child) .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f5b638, #e67e22);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-item:not(:last-child) .nav-link:hover::after,
.nav-item:not(:last-child) .nav-link.active::after {
  width: 60%;
  right: 20%;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  text-shadow: 0 0 10px rgba(245, 182, 56, 0.5);
}

/* 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: 0 4px 15px rgba(230, 126, 34, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(90deg, #f5b638, #e67e22);
  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, #e67e22, #f5b638);
  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(230, 126, 34, 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(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.menu-icon {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f5b638, #e67e22);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  box-shadow: 0 0 10px rgba(245, 182, 56, 0.3);
}

.mobile-menu-btn .menu-icon:nth-child(1) {
  transform: translateY(0) rotate(0);
}

.mobile-menu-btn .menu-icon:nth-child(2) {
  opacity: 1;
  transform: scaleX(1);
  transition: all 0.3s ease;
}

.mobile-menu-btn .menu-icon:nth-child(3) {
  transform: translateY(0) rotate(0);
}

.mobile-menu-btn.active .menu-icon:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
  background: #f5b638;
}

.mobile-menu-btn.active .menu-icon:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .menu-icon:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
  background: #f5b638;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 1.5rem;
  }

  .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(15, 15, 25, 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, 0, 0, 0.3);
    z-index: 1000;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .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.1rem;
    border-radius: 8px;
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    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(245, 182, 56, 0.1);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(245, 182, 56, 0.1);
    color: #fff;
    padding-right: 1.5rem;
  }

  .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: 0 1.2rem;
  }

  .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 */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  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, #ff5722, #ff9800);
  -webkit-background-clip: text;
  background-clip: text;
  color: #ff5722; /* Fallback color for older browsers */
  -webkit-text-fill-color: transparent;
  display: inline-block; /* Required for gradient text to work in some browsers */
}

@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-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  margin: 2rem 0;
}

.hero-features .feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hero-features .feature i {
  color: var(--accent);
  margin-left: 0.75rem;
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.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 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: translateY(-5px);
}

.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);
}

/* 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;
  }
}

@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%;
  }
}

/* Ticker Bar */
.ticker-bar {
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  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-md);
  font-weight: 600;
  height: 40px; /* Fixed height */
  display: flex;
  align-items: center;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  padding: 0 1rem;
  width: max-content;
}

.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: var(--accent);
  transform: scale(1.05);
}

.ticker-item i {
  margin-left: 0.5rem;
  color: var(--accent);
  font-size: 1rem;
}

@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: 0.9rem;
  }

  .ticker-content {
    animation-duration: 40s;
  }
}

@media (max-width: 576px) {
  .ticker-bar {
    padding: 0.5rem 0;
  }

  .ticker-item {
    margin: 0 1rem;
    font-size: 0.8rem;
  }

  .ticker-item i {
    font-size: 0.8rem;
  }

  .ticker-content {
    animation-duration: 30s;
  }
}

/* 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;
}

.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;
}

@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(245, 182, 56, 0.1);
  color: #f5b638;
  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.4rem;
}

.feature-card p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
  font-size: 1.1rem;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--background) 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.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(--primary);
  transform: scale(1.03);
  z-index: 1;
}

.pricing-card.featured:hover {
  transform: scale(1.06) translateY(-5px);
}

.popular-tag {
  position: absolute;
  top: 20px;
  left: -10px;
  background: var(--primary);
  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(0, 0, 0, 0.2);
  z-index: 2;
}

.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(--primary);
  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.1rem;
  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(--primary);
  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: #f5b638;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #f5b638 0%, #e67e22 100%);
  color: #1c1619;
}

.feature-title {
  color: #f5b638;
  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-color: #1c1619;
  position: relative;
  overflow: hidden;
}

.best-package-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    0deg,
    rgba(28, 22, 25, 1) 0%,
    rgba(28, 22, 25, 0) 100%
  );
  z-index: 0;
}

.section-subtitle {
  color: #a0a0a0;
  font-size: 1.1rem;
  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: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 182, 56, 0.1);
  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(245, 182, 56, 0.03) 0%,
    rgba(230, 126, 34, 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: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.recommendation-card:hover::before {
  opacity: 1;
}

.recommendation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
  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: 0 10px 20px rgba(78, 115, 223, 0.3);
}

.recommendation-question {
  color: #f5b638;
  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: #e5e7eb;
  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: #f5b638;
  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: #ea4335;
}

.social-link.instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}

.social-link.whatsapp {
  background: #25d366;
}

.social-link.telegram {
  background: #0088cc;
}

.social-link.snapchat {
  background: #fffc00;
  color: #000;
}

.social-link.twitter {
  background: #000000;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1c1619 0%, #2a1f24 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(245, 182, 56, 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: #f5b638;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
  color: #e5e7eb;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0.9;
}

.package-title {
  color: #ffffff;
  font-size: 1.8rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 182, 56, 0.3);
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.2);
  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: rgba(42, 31, 36, 0.7);
  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 rgba(78, 115, 223, 0.1);
  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(78, 115, 223, 0.1) 0%,
    rgba(34, 74, 190, 0.1) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reason-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(78, 115, 223, 0.3);
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
  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: 0 5px 15px rgba(78, 115, 223, 0.3);
}

.reason-card:hover .reason-icon {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #224abe 0%, #4e73df 100%);
}

.reason-content {
  text-align: right;
  flex: 1;
}

.reason-content h3 {
  color: #f5b638;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.reason-content p {
  color: #dfdfdf;
  font-size: 1.3rem;
  line-height: 1.7;
  transition: all 0.3s ease 0.1s;
}

.reason-card:hover h3 {
  color: #fff;
}

.reason-card:hover p {
  color: #e5e7eb;
}

.reason-hover {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #4e73df;
  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(78, 115, 223, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(78, 115, 223, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(78, 115, 223, 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: 0 10px 25px rgba(78, 115, 223, 0.4) !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: 0;
  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;
  }

  .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: linear-gradient(135deg, #f5b638, #e6a532);
  color: #1c1619;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 182, 56, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 182, 56, 0.4);
  background: linear-gradient(135deg, #ffc246, #f5b638);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-slogan h1 {
    font-size: 2.2rem;
  }

  .content-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .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-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: #1c1619;
}

.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(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(245, 182, 56, 0.3);
  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%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #f5b638;
  box-shadow: 0 15px 40px rgba(245, 182, 56, 0.2);
}

.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: 1.2rem 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.2rem;
  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: #f5b638;
  font-size: 1.2rem;
  min-width: 1.2rem;
  text-align: center;
  margin-top: 0.25rem;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}


/* Responsive adjustments for features */
@media (max-width: 768px) {
  .card-features li {
    font-size: 01.1rem;
    padding: 0.3rem 0;
    margin: 0 0.3rem;
  }

  .card-features {
    margin: 1rem 0;
  }
}

.card-title {
  color: #f5b638;
  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: #d3d5d7;
  text-decoration: line-through;
  font-size: 1.4rem;
}

.current-price {
  color: #f5b638;
  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;
}

.card-cta-button {
  display: inline-block;
  width: 100%;
  background: #f5b638;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  align-self: center;
}

.card-cta-button:hover {
  background: #e6a532;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 182, 56, 0.3);
}

.comparison-button {
  display: inline-block;
  background: linear-gradient(135deg, #f5b638, #e6a532);
  color: #1c1619;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245, 182, 56, 0.3);
}

.comparison-button:hover {
  background: linear-gradient(135deg, #ffc246, #f5b638);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 182, 56, 0.4);
  color: #1c1619;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .comparison-button {
    padding: 0.7rem 2rem;
    font-size: 1rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: rgba(245, 182, 56, 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: #0f0d0e;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(245, 182, 56, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-links h4 {
  color: #f5b638;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f5b638;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 182, 56, 0.1);
  color: #9ca3af;
}

/* Payment Methods */
.payments {
  padding: 2rem 0;
  background: rgba(245, 182, 56, 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: #f5b638;
  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;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #e6a532;
  transform: translateY(-2px);
}

/* Comparison Table */
.comparison {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    rgba(28, 22, 25, 0.95),
    rgba(94, 44, 237, 0.05)
  );
}

.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: 0 15px 40px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(94, 44, 237, 0.1);
  background: rgba(28, 22, 25, 0.8);
  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(245, 182, 56, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.comparison-table th {
  background: linear-gradient(135deg, #f5b638, #e6a532);
  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(245, 182, 56, 0.5);
}

.feature-column {
  text-align: right;
  background: rgba(245, 182, 56, 0.2) !important;
  color: #f5b638;
  font-weight: 700;
  border-right: 4px solid #f5b638;
}

.featured-column {
  background: linear-gradient(135deg, #f5b638, #e6a532) !important;
  position: relative;
  box-shadow: 0 0 25px rgba(245, 182, 56, 0.5);
  border: 2px solid rgba(245, 182, 56, 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: 1rem;
}

.comparison-table td:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.02);
}

.featured-cell {
  background: rgba(245, 182, 56, 0.15); /* درجة خفيفة من الذهبي */
  color: #ffffff;
  font-weight: 700;
  border-left: 3px solid #f5b638;
  border-right: 3px solid #f5b638;
}

.featured-cell:hover {
  background: rgba(245, 182, 56, 0.25); /* درجة أغمق عند الهوفر */
}

.feature-name {
  background: rgba(245, 182, 56, 0.15) !important;
  color: #f5b638 !important;
  font-weight: 700;
  text-align: right;
  border-right: 4px solid #f5b638;
  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;
  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 #f5b638;
  background: rgba(245, 182, 56, 0.08);
}

.price-row .featured-cell {
  background: rgba(245, 182, 56, 0.2);
  border-top: 4px solid #f5b638;
}

.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(245, 182, 56, 0.2);
}

.cta-text {
  color: #f5b638;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.cta-timer .countdown-text {
  color: #f5b638;
  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: 1.5rem;
  }

  .section-icon {
    margin: 0 auto 0.75rem;
    display: block;
    width: 48px;
    filter: drop-shadow(0 0 8px rgba(245, 182, 56, 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;
}

.accordion-panel p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

.accordion-panel ul,
.accordion-panel ol {
  padding-right: 2rem;
  margin: 0.5rem 0 1rem 0;
}

.accordion-panel li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-right: 1.5rem;
}

.accordion-panel li:before {
  content: "•";
  color: #f5b638;
  font-weight: bold;
  position: absolute;
  right: 0;
}

/* CTA Section */
.cta {
  padding: 3rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #1c1619, #2a1f24);
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 1.8rem;
  color: #f5b638;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-text {
  font-size: 1.1rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #f5b638, #e6a42e);
  color: #1c1619;
  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;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 182, 56, 0.3);
}

.cta-timer {
  margin-top: 2.5rem;
  color: #e5e7eb;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  min-width: 80px;
}

.countdown-item span {
  display: block;
  line-height: 1.4;
}

.countdown-item span:first-child {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5b638;
}

.countdown-label {
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Testimonials */
.testimonials {
  padding: 4rem 1rem;
  background-color: #1c1619;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 182, 56, 0.1);
  margin: 0;
  min-width: auto;
  width: 100%;
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 182, 56, 0.1);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(245, 182, 56, 0.2);
  font-size: 2.5rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid #f5b638;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  color: #f5b638;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.testimonial-rating {
  color: #f5b638;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.2rem;
}

.testimonial-text {
  color: #e5e7eb;
  line-height: 1.7;
  font-size: 1.2rem;
  text-align: center;
}

/* FAQ Section */
.faq {
  padding: 4rem 1rem;
  background: #1c1619;
}

.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 rgba(255, 255, 255, 0.1);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e5e7eb;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.accordion-header i:first-child {
  margin-left: 10px;
  color: #f5b638;
}

.accordion-header i:last-child {
  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;
  background: rgba(0, 0, 0, 0.2);
}

.accordion-panel p {
  padding: 0 1.5rem 1.5rem;
  color: #d1d5db;
  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: 0.95rem;
}

/* 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: 2rem;
  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);
}

.payment-image:hover {
  transform: scale(1.1);
  filter: brightness(1);
}

.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;
}

.installment-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.installment-text i {
  font-size: 1.2rem;
  margin-left: 4px;
}

.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: #ffd607;
  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;
}

/* 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: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #e3c308;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
  background: rgba(45, 212, 191, 0.2);
  transform: translateY(0) scale(1.1);
  color: #ffffff;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 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(245, 182, 56, 0.7));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(245, 182, 56, 0.9));
    transform: scale(1.05);
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(245, 182, 56, 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(245, 182, 56, 1)) !important;
  transform: scale(1.15) !important;
  animation: none;
}

/* Mini Subscription Card */
.pricing-card.mini-subscription-card {
  background: linear-gradient(
    145deg,
    rgba(22, 23, 28, 0.95),
    rgba(33, 31, 42, 0.95)
  );
  border: 2px solid rgba(245, 182, 56, 0.4);
  border-radius: 16px;
  padding: 1.2rem 0.8rem;
  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: 60px;
  max-width: 85%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  transform: scale(0.95);
}

.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: 0.9rem;
  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;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-card.small-card {
    max-width: 100%;
  }
}

/* ========== SEO INTERNAL LINKS STYLING - DISABLED ========== */

/* Internal SEO Links - HIDDEN */
.internal-seo-link {
  display: none !important;
}

/* SEO Link Wrapper - HIDDEN */
.seo-link-wrapper {
  display: none !important;
}

/* Enhanced styling for feature cards with internal links */
.feature-card:has(.internal-seo-link) {
  border-left: 3px solid var(--accent);
  background: rgba(255, 193, 7, 0.05);
}

/* Styling for FAQ panels with internal links */
.accordion-panel:has(.internal-seo-link) {
  border-right: 2px solid rgba(255, 193, 7, 0.3);
  background: rgba(255, 193, 7, 0.02);
}

/* Responsive design for internal links */
@media (max-width: 768px) {
  .internal-seo-link {
    font-size: 0.8em;
    padding: 1px 3px;
  }

  .seo-link-wrapper {
    font-size: 0.8em;
    margin-top: 6px;
    padding-top: 6px;
  }
}

/* Print styles - hide internal SEO links in print */
@media print {
  .internal-seo-link,
  .seo-link-wrapper {
    display: none !important;
  }
}

/* Enhanced accessibility for screen readers */
@media (prefers-reduced-motion: reduce) {
  .internal-seo-link {
    transition: none;
  }

  .internal-seo-link:hover {
    transform: none;
  }
}
