/* Ticker Bar */
.ticker-bar {
  background: linear-gradient(90deg, #f5b638 0%, #e67e22 100%);
  color: #1c1619;
  padding: 0.5rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  padding: 0 1rem;
}

.ticker-item {
  display: flex;
  align-items: center;
  margin: 0 2rem;
  font-weight: 600;
  font-size: 0.9rem;
}

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

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

/* 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 {
  font-family: "Cairo", Arial, sans-serif;
  background-color: #1c1619;
  color: #e5e7eb;
  text-align: right;
  direction: rtl;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

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

.section-title {
  color: #f5b638;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f5b638;
  border-radius: 2px;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: #1c1619;
  position: relative;
  overflow: hidden;
}

.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(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.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.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.recommendation-answer {
  color: #e5e7eb;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.recommendation-features {
  text-align: right;
  margin-bottom: 2rem;
}

.recommendation-features p {
  color: #a0a0a0;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.3s ease;
}

.recommendation-features i {
  color: #f5b638;
  margin-right: 0.5rem;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.recommendation-card:hover .recommendation-features p {
  color: #e5e7eb;
}

.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);
}

/* 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;
  z-index: 1;
}

.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.2rem;
  transition: all 0.3s ease;
}

.reason-content p {
  color: #a0a0a0;
  font-size: 0.95rem;
  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: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(
      135deg,
      rgba(245, 182, 56, 0.15) 0%,
      rgba(230, 126, 34, 0.15) 100%
    ) !important;
  }

  .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: 0.9rem;
  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: 1rem;
  min-width: 1.2rem;
  text-align: center;
  margin-top: 0.25rem;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.card-features li:hover {
  color: #f5b638;
}

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

/* Responsive adjustments for features */
@media (max-width: 768px) {
  .card-features li {
    font-size: 0.82rem;
    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: #9ca3af;
  text-decoration: line-through;
  font-size: 1rem;
}

.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;
}

.add-to-cart-btn {
  width: 100%;
  background: #f5b638;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: #e6a532;
  transform: translateY(-1px);
}

.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: 1rem;
  text-decoration: none;
  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.5rem 0 0;
    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;
}

/* 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: 1rem;
}

.testimonial-text {
  color: #e5e7eb;
  line-height: 1.7;
  font-size: 1rem;
  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.9);
  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: #e00000;
  margin-left: 0.75rem;
  font-size: 1rem;
}

.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(28, 22, 25, 0.95),
    rgba(42, 31, 36, 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: 260px;
  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(245, 182, 56, 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.2rem;
  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: 0.85rem;
  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: 0.85rem;
  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.8rem;
  }

  .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%;
  }
}
