:root {
  --primary-color: #ffd700;
  --background-color: #000;
  --text-color: #fff;
  --secondary-text-color: rgba(255, 255, 255, 0.7);
  --accent-color: rgba(255, 215, 0, 0.1);
  --font-size-base: 16px;
  --font-size-heading: 2.5rem;
  --font-size-subheading: 1.5rem;
  --font-size-text: 1rem;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(45deg, var(--background-color), #111);
  color: var(--text-color);
  font-family: Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  font-size: var(--font-size-base);
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.checkout-container {
  max-width: 1000px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  z-index: 1;
}

.progress-step {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: bold;
  transition: all var(--transition-speed) ease;
}

.progress-step.active .step-number {
  background: var(--primary-color);
  color: var(--background-color);
}

.step-label {
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.progress-step.active .step-label {
  color: var(--primary-color);
}

.checkout-step {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.checkout-step.active {
  display: block;
}

.step-title {
  color: var(--primary-color);
  font-size: var(--font-size-heading);
  margin-bottom: 30px;
}

.selected-plan {
  text-align: center;
  margin-bottom: 30px;
}

.plan-card {
  background: var(--accent-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  transition: all var(--transition-speed) ease;
}

.plan-title {
  color: var(--primary-color);
  font-size: var(--font-size-subheading);
  margin-bottom: 15px;
}

.plan-price {
  font-size: var(--font-size-heading);
  color: var(--text-color);
  margin-bottom: 20px;
}

.plan-price span {
  font-size: var(--font-size-text);
  opacity: 0.7;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  margin: 10px 0;
  color: var(--secondary-text-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary-text-color);
}

input {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: var(--text-color);
  transition: all var(--transition-speed) ease;
}

input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}

.payment-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.payment-tab {
  padding: 12px 24px;
  background: var(--accent-color);
  border: none;
  border-radius: 30px;
  color: var(--text-color);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.payment-tab.active {
  background: var(--primary-color);
  color: var(--background-color);
}

.payment-form {
  display: none;
}

.payment-form.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

#stripe-card-element {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: var(--text-color);
}

.order-summary {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  color: var(--secondary-text-color);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--accent-color);
  font-weight: bold;
  color: var(--primary-color);
}

.next-step-btn,
.complete-payment-btn {
  background: var(--primary-color);
  color: var(--background-color);
  border: none;
  border-radius: 30px;
  padding: 15px 30px;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  transition: all var(--transition-speed) ease;
}

.back-step-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  padding: 15px 30px;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: all var(--transition-speed) ease;
}

.change-plan-btn {
  background: transparent;
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--primary-color);
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.success-message {
  text-align: center;
  padding: 20px;
  background: rgba(0, 255, 0, 0.1);
  border-radius: 10px;
  margin-top: 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all var(--transition-speed) ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.logo img {
  width: 200px;
  height: auto;
}

.logo-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

.logo-link:hover {
  text-shadow: 0 0 10px var(--accent-color);
}

.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 0;
  position: relative;
  transition: all var(--transition-speed) ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta {
  display: flex;
  padding: 10px 20px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transition: all var(--transition-speed) ease;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1001;
  padding: 20px;
  transition: right var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.close-sidebar {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.close-sidebar span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  top: 50%;
  left: 0;
  transition: all var(--transition-speed) ease;
}

.close-sidebar span:first-child {
  transform: rotate(45deg);
}

.close-sidebar span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  margin-bottom: 20px;
  transform: translateX(50px);
  opacity: 0;
  transition: all var(--transition-speed) ease;
}

.mobile-sidebar.active .mobile-nav-item {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
  padding: 10px 0;
  transition: all var(--transition-speed) ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-color);
}

.sidebar-footer {
  margin-top: auto;
  text-align: center;
}

.sidebar-cta {
  width: 100%;
  margin-bottom: 20px;
}

.sidebar-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.1);
  transition: transform 2s ease-in-out;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

.content-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-color);
}

.slide-content {
  max-width: 1000px;
  padding: 20px;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.slide-title {
  font-size: var(--font-size-heading);
  margin-bottom: 1rem;
  color: var(--primary-color);
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(50px);
}

.slide-description {
  font-size: var(--font-size-text);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.cta-button {
  position: relative;
  padding: 15px 30px;
  background: var(--primary-color);
  border: none;
  border-radius: 30px;
  color: var(--background-color);
  font-size: 1.1rem;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px var(--accent-color);
}

.swiper-slide-active .slide-title,
.swiper-slide-active .slide-description {
  opacity: 1;
  transform: translate(0);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}

.feature-card {
  background: var(--accent-color);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    var(--accent-color),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 215, 0, 0.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color) !important;
  transition: transform var(--transition-speed) ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.2);
}

.swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: var(--text-color);
  opacity: 0.5;
  transition: all var(--transition-speed) ease;
}

.swiper-pagination-bullet-active {
  width: 50px;
  background: var(--primary-color) !important;
  opacity: 1;
}

.loading-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--primary-color);
  transition: width 5s linear;
}

.swiper-slide-active .loading-bar {
  width: 100%;
}

.about-section {
  background: linear-gradient(45deg, var(--background-color), #111);
      padding-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.about-content {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease;
}

.about-content.active {
  opacity: 1;
  transform: translateX(0);
}

.about-title {
  font-size: var(--font-size-heading);
  color: var(--primary-color);
  margin-bottom: 30px;
}

.about-text {
  font-size: var(--font-size-text);
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--accent-color);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s ease;
}

.stat-item.active {
  transform: translateY(0);
  opacity: 1;
}

.stat-number {
  font-size: var(--font-size-subheading);
  color: var(--primary-color);
  font-weight: bold;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.about-image {
  position: relative;
  transform: translateX(100px);
  opacity: 0;
  transition: all 0.8s ease;
}

.about-image.active {
  transform: translateX(0);
  opacity: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  z-index: -1;
  transition: all var(--transition-speed) ease;
}

.about-image:hover::before {
  top: -10px;
  right: -10px;
}

.pricing-section {
  background: linear-gradient(-45deg, #111, var(--background-color));
}

.pricing-title {
  text-align: center;
  font-size: var(--font-size-heading);
  color: var(--primary-color);
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease;
}

.pricing-title.active {
  opacity: 1;
  transform: translateY(0);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  background: var(--accent-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.price-card.active {
  transform: translateY(0);
  opacity: 1;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    var(--accent-color),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.price-card:hover::before {
  transform: translateX(100%);
}

.price-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.1);
}

.price-title {
  font-size: var(--font-size-subheading);
  color: var(--primary-color);
  margin-bottom: 20px;
}

.price-amount {
  font-size: var(--font-size-heading);
  color: var(--text-color);
  margin: 20px 0;
}

.price-amount span {
  font-size: var(--font-size-text);
}

.price-features {
  list-style: none;
  margin: 30px 0;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.price-features li {
  margin: 8px 0;
  opacity: 0.8;
}

.price-button {
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--background-color);
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.price-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.price-button:hover::before {
  width: 300px;
  height: 300px;
}

.price-button:hover {
  transform: scale(1.05);
}

.testimonial-section {
  background: linear-gradient(45deg, #111, var(--background-color));
  padding: 100px 0;
}

.testimonial-title {
  text-align: center;
  font-size: var(--font-size-heading);
  color: var(--primary-color);
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease;
}

.testimonial-title.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-swiper {
  padding: 50px 0;
  overflow: visible;
}

.testimonial-card {
  background: var(--accent-color);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: var(--font-size-text);
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-name {
  color: var(--primary-color);
  font-size: var(--font-size-subheading);
  margin-bottom: 5px;
}

.testimonial-position {
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.footer-section {
  background: var(--background-color);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.footer-col.active {
  opacity: 1;
  transform: translateY(0);
}

.footer-title {
  color: var(--primary-color);
  font-size: var(--font-size-subheading);
  margin-bottom: 20px;
}

.footer-subtitle {
  color: var(--primary-color);
  font-size: var(--font-size-text);
  margin-bottom: 20px;
}

.footer-description {
  color: var(--secondary-text-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.social-link:hover {
  color: var(--primary-color);
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--secondary-text-color);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact li {
  color: var(--secondary-text-color);
}

.footer-bottom {
  border-top: 1px solid var(--accent-color);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.payment-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.payment-popup.active {
  display: flex;
}

.popup-content {
  background: var(--text-color);
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideIn 0.3s ease-out;
}

.close-popup {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 5px;
  line-height: 1;
}

.close-popup:hover {
  color: var(--background-color);
}

.popup-header {
  margin-bottom: 1.5rem;
}

.popup-header h2 {
  color: var(--background-color);
  font-size: var(--font-size-subheading);
  margin-bottom: 0.5rem;
}

.selected-plan {
  color: #666;
  font-size: var(--font-size-text);
}

.payment-methods {
  display: grid;
  gap: 1rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  background: var(--text-color);
}

.payment-method:hover {
  border-color: var(--primary-color);
  background: #fff9e6;
  transform: translateY(-2px);
}

.method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
}

.method-icon img {
  width: 24px;
  height: 24px;
}

.method-details {
  flex: 1;
}

.method-name {
  font-weight: bold;
  color: var(--background-color);
  margin-bottom: 0.25rem;
}

.method-description {
  font-size: 0.875rem;
  color: #666;
}

.terms-notice {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

.error-message {
  color: #ff4444;
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

/* Additional styles for refund form */
.refund-form-section {
  padding: 80px 0;
  background: linear-gradient(-45deg, #111, #000);
}

.refund-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease;
  animation: fadeIn 0.5s ease forwards;
}

.refund-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.2s forwards;
}

.refund-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s ease 0.4s forwards;
  opacity: 0;
}

.form-row.textarea {
  grid-template-columns: 1fr;
}

textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
  min-height: 120px;
  resize: vertical;
}

textarea:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.15);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  accent-color: #ffd700;
}

.refund-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.refund-popup.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

.popup-content {
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid #ffd700;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideIn 0.3s ease-out;
  text-align: center;
}

.popup-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffd700;
  font-size: 30px;
}

.popup-title {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.popup-message {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.popup-button {
  background: #ffd700;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

select {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

select option {
  color: #000;
}

select:focus {
  outline: none;
  border-color: #ffd700;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Add to your style.css file */
/* Contact Popup Styles */
.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s;
}

.contact-popup.active .popup-content {
  transform: translateY(0);
}

.popup-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: white;
  font-size: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.popup-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.popup-message {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.popup-button {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.popup-button:hover {
  background-color: #3a7bc8;
}
/* Footer Flags */
.footer-flags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0 20px;
  gap: 15px;
}

.footer-flags img {
  height: 24px;
  width: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.footer-flags img:hover {
  transform: scale(1.15);
}

/* Fixed Price Card Buttons */
.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 70px; /* Make space for the fixed button */
  height: 100%;
}

.price-button {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 20px;
  width: calc(100% - 40px);
}

/* Icons for list items */
.price-features li {
  position: relative;
  /* padding-left: 30px; */
  /* margin-bottom: 12px; */
  list-style: none;
  text-align: initial;

}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: -19px;
  color: #4CAF50;
  font-weight: bold;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    transform: rotateY(-90deg) translateZ(100px);
    opacity: 0;
  }
  to {
    transform: rotateY(0) translateZ(0);
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.slide-content > * {
  animation: rotateIn 0.8s forwards;
  opacity: 0;
}

.slide-content > *:nth-child(2) {
  animation-delay: 0.2s;
}

.slide-content > *:nth-child(3) {
  animation-delay: 0.4s;
}

.slide-content > *:nth-child(4) {
  animation-delay: 0.6s;
}

.mobile-nav-item:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav-item:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-nav-item:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-nav-item:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-nav-item:nth-child(5) {
  transition-delay: 0.5s;
}

@media (max-width: 1024px) {
           :root {
  --font-size-base: 15px;
  --font-size-heading: 2.2rem;
  --font-size-subheading: 1.4rem;
  --font-size-text: 0.8rem;
}
  .nav-desktop {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
       :root {
  --font-size-base: 14px;
  --font-size-heading: 2rem;
  --font-size-subheading: 1.3rem;
  --font-size-text: 0.8rem;
}

  .checkout-container {
    padding: 20px;
    margin: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .payment-tabs {
    flex-direction: column;
  }
  .progress-bar {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .progress-bar::before {
    display: none;
  }
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .step-label {
    font-size: 0.8rem;
  }
  .plan-card {
    padding: 20px;
  }
  .plan-title {
    font-size: var(--font-size-text);
  }
  .plan-price {
    font-size: var(--font-size-subheading);
  }
  .next-step-btn,
  .complete-payment-btn,
  .back-step-btn {
    padding: 12px 20px;
    font-size: var(--font-size-text);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .refund-form-container {
    padding: 20px;
    margin: 20px;
  }
  .refund-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {

    :root {
  --font-size-base: 13px;
  --font-size-heading: 1.8rem;
  --font-size-subheading: 1.2rem;
  --font-size-text: 0.7rem;
}

.section{
    padding: 50px 0;
}

.testimonial-section{    
    padding: 50px 0;
}
  .mobile-sidebar {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .feature-cards {
    display: none;
  }
  .popup-content {
    width: 95%;
    padding: 1.5rem;
  }
  .payment-method {
    padding: 0.75rem;
  }
  .slide-title {
    font-size: var(--font-size-subheading);
  }
  .slide-description {
    font-size: 0.9rem;
  }
  .cta-button {
    padding: 12px 24px;
    font-size: var(--font-size-text);
  }
  


  
}



