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

:root {
  /* New Color Palette - Purple/Teal Theme */
  --primary-color: #6c63ff;
  --secondary-color: #00d9ff;
  --accent-color: #ff6b9d;
  --dark-bg: #0f0f23;
  --card-bg: #1c1c28;
  --text-primary: #ffffff;
  --text-secondary: #b8b8d1;
  --gradient-1: linear-gradient(135deg, #6c63ff 0%, #00d9ff 100%);
  --gradient-2: linear-gradient(135deg, #ff6b9d 0%, #ffa06b 100%);
  --shadow-sm: 0 2px 10px rgba(108, 99, 255, 0.1);
  --shadow-md: 0 8px 30px rgba(108, 99, 255, 0.2);
  --shadow-lg: 0 15px 50px rgba(108, 99, 255, 0.3);
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000000;
  background-attachment: fixed;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.language-wrapper {
  transition: direction 0.3s ease;
}

.language-wrapper.ar {
  direction: rtl;
  font-family: "Tajawal", "Cairo", sans-serif;
}

/* Header Section */
.header {
  min-height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(15, 15, 35, 0.3) 0%,
      rgba(26, 26, 46, 0.3) 100%
    ),
    url("../assets/images/header-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(108, 99, 255, 0.15) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}

.header::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 217, 255, 0.15) 0%,
    transparent 70%
  );
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
}

.wraper {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(108, 99, 255, 0.5));
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s;
}

.nav ul li a:hover {
  color: var(--text-primary);
}

.nav ul li a:hover::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(108, 99, 255, 0.1);
  transition: all 0.3s;
}

.lang-switcher:hover {
  background: rgba(108, 99, 255, 0.2);
  transform: translateY(-2px);
}

.join {
  background: var(--gradient-1);
  padding: 0.75rem 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.join:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Mobile Menu */
.menu {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 2rem;
  border-left: 1px solid rgba(108, 99, 255, 0.2);
}

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

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.close-menu:hover {
  transform: rotate(90deg);
}

.mobile-menu ul {
  list-style: none;
  margin-top: 4rem;
}

.mobile-menu ul li {
  margin: 2rem 0;
  opacity: 0;
  animation: slideIn 0.5s forwards;
}

.mobile-menu.active ul li {
  animation: slideIn 0.5s forwards;
}

.mobile-menu ul li:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-menu ul li:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-menu ul li:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-menu ul li:nth-child(4) {
  animation-delay: 0.4s;
}
.mobile-menu ul li:nth-child(5) {
  animation-delay: 0.5s;
}
.mobile-menu ul li:nth-child(6) {
  animation-delay: 0.6s;
}
.mobile-menu ul li:nth-child(7) {
  animation-delay: 0.7s;
}

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

.mobile-menu ul li a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s;
}

.mobile-menu ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(10px);
}

/* Hero Content */
.content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #ffffff;
  animation: fadeInUp 1s ease-out;
}

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

.title-text {
  display: inline-block;
  position: relative;
}

.title-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.main-cta {
  background: var(--gradient-1);
  padding: 1.2rem 3rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.faq-cta {
  padding: 1.2rem 3rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
}

.faq-cta:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.social {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.social .icon {
  transition: all 0.3s;
  filter: drop-shadow(0 4px 10px rgba(108, 99, 255, 0.3));
}

.social .icon:hover {
  transform: translateY(-8px) scale(1.1);
  filter: drop-shadow(0 8px 20px rgba(108, 99, 255, 0.5));
}

.social .icon svg rect {
  fill: var(--primary-color);
}

/* Ticker */
.ticker-wrap {
  background: var(--gradient-1);
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.ticker {
  display: inline-block;
  animation: scroll 25s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0 3rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

/* Section Headlines */
.section-headline {
  height: 180px;
  width: 100%;
  max-width: 600px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 4rem auto;
  position: relative;
  z-index: 10;
}

.section-headline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(108, 99, 255, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

/* Swiper Styles */
.success-swiper {
  margin: 3rem 0;
  padding: 0 2rem;
}

.success-swiper .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.success-swiper .swiper-slide:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--secondary-color);
}

/* Success Swiper Pagination - Position below images */
.success-swiper .swiper-pagination {
  bottom: -40px !important;
  position: relative;
}

/* Transformation Duration Label */
.transformation-duration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(
    to top,
    rgba(15, 15, 35, 0.98) 0%,
    rgba(108, 99, 255, 0.92) 60%,
    rgba(0, 217, 255, 0.85) 100%
  );
  backdrop-filter: blur(15px);
  z-index: 10;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 -8px 30px rgba(108, 99, 255, 0.5);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.transformation-duration .duration-text {
  display: block;
  text-align: center;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7),
               0 0 20px rgba(108, 99, 255, 0.8);
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7),
                 0 0 20px rgba(108, 99, 255, 0.8);
  }
  50% {
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7),
                 0 0 30px rgba(0, 217, 255, 1),
                 0 0 40px rgba(108, 99, 255, 0.6);
  }
}

/* Mobile adjustments for duration label */
@media (max-width: 768px) {
  .transformation-duration {
    padding: 1.3rem 1rem;
  }
  
  .transformation-duration .duration-text {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }
}

.review-swiper {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
}

.review-placeholder {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(108, 99, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
  background: rgba(108, 99, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(108, 99, 255, 0.2);
}

/* About Us Section */
.aboutus {
  padding: 5rem 2rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(26, 26, 46, 0.5) 100%
  );
}

.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.captain-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #6c63ff rgba(108, 99, 255, 0.1);
}

.captain-carousel::-webkit-scrollbar {
  height: 8px;
}

.captain-carousel::-webkit-scrollbar-track {
  background: rgba(108, 99, 255, 0.1);
  border-radius: 10px;
}

.captain-carousel::-webkit-scrollbar-thumb {
  background: var(--gradient-1);
  border-radius: 10px;
}

.captain-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.captain-image {
  background-size: cover;
  background-position: center;
  min-width: 450px;
  width: 450px;
  height: 640px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.3s;
}

.captain-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.4);
}

.captain-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.05) 0%,
    rgba(0, 217, 255, 0.05) 100%
  );
}

.details .info h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.details .info p {
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.details .info ul {
  list-style: none;
  margin-bottom: 2.5rem;
}

.details .info ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  font-weight: 600;
  padding: 1rem;
  background: rgba(108, 99, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s;
}

.details .info ul li:hover {
  background: rgba(108, 99, 255, 0.1);
  transform: translateX(10px);
}

.details .info ul li svg path:last-child {
  fill: var(--primary-color);
}


/* FAQ Section */
.faq-section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 15px;
  margin: 1.5rem 0;
  overflow: hidden;
  border: 1px solid rgba(108, 99, 255, 0.2);
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.8rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.3s;
  color: var(--text-primary);
}

.faq-question:hover {
  background: rgba(108, 99, 255, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.8rem;
  color: var(--text-secondary);
}

.faq-answer.active {
  max-height: 500px;
  padding: 1.8rem;
}

.faq-icon {
  transition: transform 0.3s;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.faq-icon.active {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  background: rgba(15, 15, 35, 0.95);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(108, 99, 255, 0.2);
}

.footer-logo {
  height: 70px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px rgba(108, 99, 255, 0.5));
}

.footer p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.social-footer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-footer a svg rect {
  fill: var(--primary-color);
}

.social-footer a:hover {
  transform: translateY(-5px);
}

/* Utility Classes */
.hidemobile {
  display: flex !important;
}

.hidepc {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hidemobile {
    display: none !important;
  }

  .hidepc {
    display: block !important;
  }

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

  .details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .captain-image {
    min-width: 350px;
    width: 350px;
    height: 500px;
  }

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

  .nav {
    padding: 1rem;
  }

  .nav ul {
    gap: 1.5rem;
  }

  .cert-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .cert-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
    order: 1;
    position: relative;
    height: auto;
  }

  .cert-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 20px;
  }

  .cert-info {
    width: 100%;
    order: 2;
  }

  .cert-info h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .cert-info p {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .cert-list li {
    margin: 1.2rem 0;
    padding: 1rem;
  }

  .cert-list li:hover {
    transform: translateX(5px);
  }

  /* Reduce section spacing */
  .aboutus {
    padding: 3rem 2rem;
  }

  .packages {
    padding: 2rem 1.5rem;
  }

  .faq-section {
    padding: 3rem 2rem;
  }

  .shop-now-section {
    padding: 3rem 1.5rem;
  }

  .certifications-section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .details .info h1 {
    font-size: 2rem;
  }

  .cta {
    flex-direction: row;
    gap: 0.8rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .main-cta,
  .faq-cta {
    flex: 1;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    text-align: center;
    white-space: nowrap;
  }

  .section-headline {
    height: 150px !important;
    width: 100% !important;
    max-width: 90% !important;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .content {
    padding: 1.5rem 1rem;
  }

  .certifications-section {
    padding: 2rem 1rem;
  }

  .cert-content {
    gap: 1.5rem;
  }

  .cert-image {
    margin-bottom: 1rem;
  }

  .cert-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .cert-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cert-list li {
    flex-direction: row;
    gap: 1rem;
    text-align: left;
    align-items: flex-start;
    margin: 0.8rem 0;
    padding: 0.8rem;
  }

  .cert-list li strong {
    font-size: 1rem;
  }

  .cert-list li span {
    font-size: 0.85rem;
  }

  /* Reduce spacing for other sections */
  .header {
    min-height: 100vh;
    padding: 1rem;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .aboutus {
    padding: 2.5rem 1rem;
  }

  .details {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .captain-image {
    min-width: 280px;
    width: 280px;
    height: 400px;
  }

  .packages {
    padding: 2rem 1rem;
  }

  .items {
    gap: 1.5rem;
  }

  .faq-section {
    padding: 2.5rem 1rem;
  }

  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .faq-item {
    margin: 1rem 0;
  }

  .section-headline {
    height: 150px !important;
    width: 100% !important;
    max-width: 95% !important;
    margin: 2.5rem auto !important;
  }

  .shop-now-section {
    padding: 2rem 1rem;
  }
}

/* Loading Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Certifications Section */
.certifications-section {
  padding: 5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.03) 0%,
    rgba(0, 217, 255, 0.03) 100%
  );
}

.cert-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cert-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cert-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s;
}

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

.cert-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cert-info p {
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

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

.cert-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(108, 99, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s;
}

.cert-list li:hover {
  background: rgba(108, 99, 255, 0.1);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.cert-list li svg {
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.cert-list li svg path:last-child {
  fill: var(--primary-color);
}

.cert-list li div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cert-list li strong {
  font-size: 1.2rem;
  color: var(--text-primary);
  display: block;
}

.cert-list li span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: block;
}

/* Coming Soon Section */
.coming-soon-section {
  padding: 2rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.08) 0%,
    rgba(0, 217, 255, 0.08) 100%
  );
  position: relative;
  overflow: hidden;
}

.coming-soon-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(108, 99, 255, 0.1) 0%,
    transparent 70%
  );
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

.coming-soon-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--card-bg);
  padding: 2rem 2rem;
  border-radius: 30px;
  border: 1px solid rgba(108, 99, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.coming-soon-icon {
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.coming-soon-content h2 {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.coming-soon-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(108, 99, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.8));
  }
}

.coming-soon-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.notify-badge {
  display: inline-block;
  background: var(--gradient-1);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.notify-badge span {
  display: block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Shop Now Section */
.shop-now-section {
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.05) 0%,
    rgba(0, 217, 255, 0.05) 100%
  );
}

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

.shop-now-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.shop-now-section .section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.products-showcase {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.products-showcase::-webkit-scrollbar {
  height: 8px;
}

.products-showcase::-webkit-scrollbar-track {
  background: rgba(108, 99, 255, 0.1);
  border-radius: 10px;
}

.products-showcase::-webkit-scrollbar-thumb {
  background: var(--gradient-1);
  border-radius: 10px;
}

.products-showcase::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.product-showcase-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(108, 99, 255, 0.2);
  transition: all 0.3s;
  cursor: pointer;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
}

.product-showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.product-showcase-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(108, 99, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase-image .placeholder {
  font-size: 3rem;
}

.product-showcase-info {
  padding: 1.2rem;
}

.product-showcase-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-showcase-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-showcase-price {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.product-showcase-price small {
  font-size: 0.9rem;
  opacity: 0.8;
}

.show-more-container {
  text-align: center;
}

.show-more-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.show-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .shop-now-section {
    padding: 3rem 1rem;
  }

  .shop-now-section .section-header h2 {
    font-size: 2rem;
  }

  .products-showcase {
    gap: 1.5rem;
    justify-content: center;
  }

  .product-showcase-card {
    min-width: 280px;
    max-width: 280px;
  }

  .product-showcase-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .product-showcase-card {
    min-width: 260px;
    max-width: 260px;
  }

  .product-showcase-image {
    height: 180px;
  }
}
/* Premium Package Styles - New Structure */
.package-name {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.8rem 0 0.5rem 0;
}

.duration {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0.5rem 0 1rem 0;
  font-weight: 600;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(108, 99, 255, 0.03);
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: all 0.3s;
}

.feature-item:hover {
  background: rgba(108, 99, 255, 0.08);
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.15) 0%,
    rgba(0, 217, 255, 0.15) 100%
  );
  border-radius: 10px;
  transition: all 0.3s;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.25) 0%,
    rgba(0, 217, 255, 0.25) 100%
  );
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  margin: 0 0 0.3rem 0;
}

.feature-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0.3rem 0 0 0;
}

/* Package-specific colors */
.silver-package {
  border-color: rgba(192, 192, 192, 0.3);
}

.silver-package:hover {
  border-color: rgba(192, 192, 192, 0.6);
  box-shadow: 0 30px 60px rgba(192, 192, 192, 0.3);
}

.gold-package {
  border-color: rgba(255, 215, 0, 0.3);
}

.gold-package:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.3);
}

.vip-package {
  border-color: rgba(138, 43, 226, 0.3);
}

.vip-package:hover {
  border-color: rgba(138, 43, 226, 0.6);
  box-shadow: 0 30px 60px rgba(138, 43, 226, 0.3);
}

/* Enhanced item styles for premium look */
.item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.item.popular {
  transform: scale(1.03);
}

.item.popular:hover {
  transform: translateY(-15px) scale(1.03);
}

/* Packages Container */
.items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
  margin: 2rem auto;
  padding: 0 2rem;
}

/* Individual Package Card */
.item {
  background: var(--card-bg);
  border-radius: 20px;
  border: 2px solid rgba(108, 99, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: visible;
  margin: 1rem;
  position: relative;
}

.item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.3);
  border-color: var(--primary-color);
}

/* Package Header */
.headline {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(108, 99, 255, 0.08) 0%,
    transparent 100%
  );
  border-bottom: 2px solid rgba(108, 99, 255, 0.15);
  margin-bottom: 1.5rem;
}

.headline h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0.5rem 0;
}

.headline h3 {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

/* Price Container */
.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: 0.5rem 0;
}

.compare-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.6;
}

.actual-price {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}


/* Popular Tag */
.populartag {
  position: absolute;
  top: -15px;
  right: 20px;
  display: inline-block;
  background: var(--gradient-2);
  color: white;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(255, 107, 157, 0.5);
  animation: bounce 2s ease-in-out infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Subscribe Button */
.booknow {
  display: block;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 1rem 2rem;
  margin: 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
  border: none;
  cursor: pointer;
  width: auto;
  font-family: inherit;
}

.booknow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(108, 99, 255, 0.5);
}

/* Responsive Design for Packages */
@media (max-width: 968px) {
  .items {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .item {
    margin: 1rem 0;
  }
}

@media (max-width: 640px) {
  .items {
    padding: 0 1rem;
  }
  
  .item {
    margin: 0.5rem 0;
  }
  
  .headline {
    padding: 1.5rem;
  }
  
  .headline h2 {
    font-size: 1.5rem;
  }
  
  .headline h3 {
    font-size: 2rem;
  }
  
  .booknow {
    margin: 1.5rem;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

/* Fitness Calculator Section */
.fitness-calculator-section {
  padding: 5rem 2rem;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.3) 0%,
    transparent 100%
  );
}

.calculator-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(108, 99, 255, 0.2);
  transition: all 0.3s;
}

.calculator-container:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(108, 99, 255, 0.4);
}

.fitness-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  padding: 1rem 1.2rem;
  background: rgba(15, 15, 35, 0.6);
  border: 2px solid rgba(108, 99, 255, 0.3);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  background: rgba(15, 15, 35, 0.8);
  box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.form-group input::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--card-bg);
  color: var(--text-primary);
}

.calculate-btn {
  margin-top: 1rem;
  padding: 1.2rem 2.5rem;
  background: var(--gradient-1);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.calculate-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.calculate-btn:active {
  transform: translateY(-1px);
}

/* Results Modal */
.results-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.results-modal.active {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: var(--card-bg);
  border-radius: 30px;
  padding: 3rem;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(108, 99, 255, 0.5);
  border: 2px solid rgba(108, 99, 255, 0.3);
  animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.8) translateY(-50px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 107, 157, 0.2);
  border: none;
  color: #ff6b9d;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-weight: 300;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 107, 157, 0.3);
  transform: rotate(90deg);
}

.modal-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.result-card {
  background: rgba(15, 15, 35, 0.6);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid rgba(108, 99, 255, 0.2);
  transition: all 0.3s;
}

.result-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

.result-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.result-card h3 {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.result-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.result-category {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-top: 0.5rem;
}

.result-category.underweight {
  background: rgba(0, 217, 255, 0.2);
  color: #00d9ff;
}

.result-category.normal {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.result-category.overweight {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
}

.result-category.obese {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.result-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.recommendation-box {
  background: rgba(108, 99, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}

.recommendation-box h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.recommendation-box p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  background: var(--gradient-1);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Responsive Design for Fitness Calculator */
@media (max-width: 768px) {
  .calculator-container {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    width: 95%;
  }

  .modal-content h2 {
    font-size: 2rem;
  }

  .result-value {
    font-size: 2rem;
  }
}

/* Payment Modal Styles */
.payment-modal-content {
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
}

.payment-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.payment-info-card {
  background: rgba(108, 99, 255, 0.05);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.payment-info-card:hover {
  background: rgba(108, 99, 255, 0.08);
  border-color: rgba(108, 99, 255, 0.3);
  transform: translateY(-2px);
}

.payment-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.payment-info-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(108, 99, 255, 0.1);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row span {
  color: var(--text-secondary);
}

.detail-row strong {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.price-highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem !important;
}

.instapay-icon,
.screenshot-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.phone-number-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  margin-top: 1rem;
}

.phone-number {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.copy-btn {
  background: var(--gradient-1);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.copy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 1.5rem;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.close-payment-btn {
  width: 100%;
  background: rgba(108, 99, 255, 0.1);
  color: var(--text-primary);
  border: 2px solid rgba(108, 99, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
  font-family: inherit;
}

.close-payment-btn:hover {
  background: rgba(108, 99, 255, 0.2);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .payment-modal-content {
    padding: 1.5rem;
  }

  .payment-info-card {
    padding: 1rem;
  }

  .phone-number {
    font-size: 1.1rem;
  }

  .phone-number-box {
    flex-direction: column;
    padding: 1rem;
  }

  .copy-btn {
    width: 100%;
  }

  .whatsapp-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Program Section Headers */
.program-section-header {
  text-align: center;
  margin: 4rem 0 2.5rem 0;
  position: relative;
  padding: 2rem 0;
}

.program-section-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

.program-section-header h3 {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px rgba(108, 99, 255, 0.3);
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(108, 99, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(108, 99, 255, 0.8));
  }
}

@media (max-width: 968px) {
  .program-section-header h3 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 640px) {
  .program-section-header {
    margin: 3rem 0 2rem 0;
    padding: 1.5rem 0;
  }

  .program-section-header h3 {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
  }
}

