/* Subscription Plans Page Styles */
body{
    font-family: 'quick-gaseous', Arial, sans-serif;
}
/* Home Dot Button */
.home-dot {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 15px rgb(230, 0, 255);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.home-dot:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(240, 147, 251, 0.6);
}

.dot-pulse {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: relative;
}

.dot-pulse::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Plans Container */
.plans-container {
  width: 100%;
  min-height: 100vh;
background: 
    radial-gradient(circle at 20% 80%, rgb(255, 101, 101) 20%, transparent 90%),
    radial-gradient(circle at 80% 20%, rgb(255, 0, 21) 20%, transparent 50%);  padding: 0;
}

/* Hero Section */
.plans-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.plans-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(255, 162, 0);
  pointer-events: none;
}
.plans-hero-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 500px;       /* Gives space for content + wave */
  background: transparent;     /* Light gray - makes red wave visible */
}

.plans-hero {
  position: relative;
  z-index: 2;
  padding-bottom: 140px;  /* MUST match SVG height exactly */
  padding-top: 60px;      /* Add top padding for content spacing */
  padding-left: 40px;
  padding-right: 40px;
}

.wave-border {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  z-index: 1 !important;
  min-height: 100px !important;
   max-height: 140px !important;
}
@media (max-width: 768px) {
  .plans-hero-wrapper{
    min-height: auto;
  }
  .wave-border {
display:none;  }}

  .plans-title {
  position: relative;
  z-index: 1;
  font-family: 'quick-gaseous', 'Arial', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 100;
  color: rgb(255, 255, 255);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.plans-subtitle {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgb(0, 0, 0);
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Plans Section */
.plans-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Plan Card */
.plan-card {
  background: rgb(255, 210, 210);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 600px;
  overflow: hidden;
}

/* Coming Soon Banner */
.coming-soon-banner {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #540000, #ee5a52);
  color: white;
  font-size: 0.9rem;
  font-weight: 100;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  z-index: 10;
  border-radius: 3px;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 191, 0, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(244, 196, 48, 0.1);
  transition: all .1s ease ;
}

/* Plan Badge for Popular */
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f43030, #dba564);
  color: #1d0443;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgb(255, 191, 0);
}

/* Plan Header */
.plan-header {
  text-align: center;
}

.plan-name {
  text-decoration: underline 2px;
  text-underline-offset: 4px;
  font-size: 4rem;
  letter-spacing: -2px;
  font-weight: 100;
  color: #520000;
  margin: 0 0 0.5rem;
  text-shadow: #ffffff 1px 1px 10px;
  font-family: 'quick-gaseous', 'Arial', sans-serif;
}

.plan-description {
  font-size: 1.2rem;
  color: rgba(65, 0, 0, 0.7);
  margin: 0;
}

/* Plan Price */
.plan-price {
  border-radius: 50px;
  background-color: #b3b3ff;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.currency {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 100;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  font-family: monospace;
  display: inline;
}

.billing-period {
  font-size: 1.2rem;
  color: rgb(255, 255, 255);
  display: block;
  margin-top: 0.5rem;
}

/* Plan Features List */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-placeholder {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-placeholder::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgb(0, 255, 8);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Plan CTA Button */
.plan-cta {
  font-family: 'quick-gaseous', 'Arial', sans-serif;
  background: rgba(255, 255, 255, 0.738);
  color: #000000;
  border: 2px solid #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 100;
  cursor:grabbing;
  transition: ease 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  width: 100%;
  margin-top: auto;
}

.plan-cta:hover {
  background: #db6eff;
  color: #1d0443;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 196, 48, 0.3);
}

.plan-cta:active {
  transform: translateY(0);
}

/* Primary CTA for Popular Plan */
.plan-cta-primary {
  background: linear-gradient(135deg, #f4c430, #dba564);
  color: #1d0443;
  border: none;
  box-shadow: 0 8px 20px rgba(244, 196, 48, 0.4);
}

.plan-cta-primary:hover {
  background: linear-gradient(135deg, #dba564, #c89450);
  box-shadow: 0 12px 30px rgba(244, 196, 48, 0.5);
}

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

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'quick-gaseous', 'Arial', sans-serif;
}

.faq-placeholder {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* FAQ Container */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ Item */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(244, 196, 48, 0.5);
  background: rgba(244, 196, 48, 0.05);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 100;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'quick-gaseous', Arial, sans-serif;
}

.faq-question:hover {
  color: #010100;
}

/* FAQ Toggle Icon */
.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: #000000;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow:auto;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background:linear-gradient( rgb(0, 137, 9) , rgb(0, 70, 22) );
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 0;
  
  color: rgb(255, 255, 255);
  line-height: 1.8;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 480px) {
  .plans-hero {
    padding: 3rem 1rem 2rem;
  }

  .plans-title {
    font-size: 2.2rem;
    text-decoration: underline 2px darkgreen;
    margin-bottom: 0.5rem;
  }

  .plans-subtitle {
    font-size: 0.9rem;
  }

  .home-dot {
    width: 40px;
    height: 40px;
    top: 1rem;
    right: 1rem;
  }

  .dot-pulse {
    width: 16px;
    height: 16px;
  }

  .coming-soon-banner {
    padding: 4px 8px;
    font-size: 0.6rem;
    top: 6px;
    right: 6px;
  }

  .plan-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .plan-name {
    font-size: 1.1rem;
  }

  .currency {
    font-size: 1rem;
  }

  .amount {
    font-size: 1.8rem;
  }

  .billing-period {
    font-size: 0.85rem;
  }

  .feature-placeholder {
    font-size: 0.85rem;
    padding-left: 1.2rem;
  }

  .feature-placeholder::before {
    font-size: 1rem;
  }

  .plan-cta {
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }

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

@media (max-width: 768px) {
  .plans-section {
    padding: 2rem 1rem;
  }

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

  .plan-card {
    padding: 1.5rem;
    gap: 1rem;
    min-height: auto;
  }

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

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

  .plan-name {
    font-size: 1.3rem;
  }

  .amount {
    font-size: 2rem;
  }

  .feature-placeholder {
    font-size: 0.9rem;
  }

  .plan-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

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

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

@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .plan-card {
    padding: 2rem;
    min-height: auto;
  }

  .plan-name {
    font-size: 3rem;
  }

  .amount {
    font-size: 2.5rem;
  }
}

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

/* Animation for plan cards on load */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-card {
  animation: slideInUp 0.6s ease-out forwards;
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }
