/* pricing.css - Styles specific to pricing page */

.pricing-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.pricing-hero {
  text-align: center;
  margin-bottom: 30px; /* Keep this as you set */
  padding-bottom: 15px; /* Override the 100px padding-bottom from styles.css */
}

.pricing-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pricing-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: #ababab;
}

/* Pricing Cards */
.pricing-cards {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping to ensure all cards stay in one row */
  gap: 20px;
  ustify-content: space-between; /* Distribute cards evenly */
  margin-bottom: 80px;
}

/* Adjust pricing card size to fit larger container */
.pricing-card {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  width: 24%; /* Keep proportional width for four cards */
  min-width: 320px; /* Increase min-width to scale cards (was 300px) */
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  /*height: 690px !important;*/
}

/* Ensure popular card aligns in size */
.pricing-card.popular {
  border: 1px solid #ffe234;
  transform: scale(1);
}

.pricing-card.popular:hover {
  transform: translateY(-10px);
}

.pricing-card-tag {
  position: absolute;
  top: 15px;
  right: 0;
  background-color: #ffe234;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 15px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.pricing-card-header {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 30px 20px;
  text-align: center;
}

.pricing-card-header h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
}

.price {
  font-size: 40px;
  font-weight: bold;
  color: #ffe234;
}

.price span {
  font-size: 18px;
  font-weight: normal;
  color: #ababab;
}

.savings {
  margin-top: 10px;
  font-size: 14px;
  color: #4caf50;
}

.pricing-card-body {
  padding: 30px 20px;
}

.features-list {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}

.features-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 30px;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffe234;
  font-weight: bold;
}

.subscribe-btn {
  display: block;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.subscribe-btn:hover {
  background-color: #444;
}

.pricing-card.popular .subscribe-btn {
  background-color: #ffe234;
  color: #000;
}

.pricing-card.popular .subscribe-btn:hover {
  background-color: #ffd700;
}

/* FAQ Section */
.pricing-faq {
  max-width: 800px;
  margin: 0 auto 80px;
}

.pricing-faq h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.faq-item {
  margin-bottom: 30px;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 10px;
  padding: 20px;
  border-left: 3px solid #ffe234;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffe234;
}

.faq-item p {
  color: #ababab;
  line-height: 1.5;
}

/* CTA Section */
.pricing-cta {
  text-align: center;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 60px 30px;
  margin: 60px auto;
  max-width: 800px;
}

.pricing-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: white;
}

.cta-button {
  display: inline-block;
  background-color: #ffe234;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
}

.cta-button:hover {
  background-color: #ffd700;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1500px) { /* Adjusted breakpoint to account for larger container */
  .pricing-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-card {
    width: 45%;
    min-width: 350px; /* Slightly smaller min-width for medium screens */
  }
}


@media (max-width: 768px) {
  .pricing-card {
    width: 100%;
    min-width: 100%; /* Full width on small screens */
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
  
  .pricing-hero h1 {
    font-size: 2.2rem;
  }
  
  .pricing-cta {
    padding: 40px 20px;
  }
  
  .pricing-cta h2 {
    font-size: 1.5rem;
  }
}

/* Add this to the end of your pricing.css file */

/* Gold metallic shine effect for "real time voice capture" */
.gold-shine {
  color: #FFD700;
  font-weight: bold;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    to right, 
    #e0a800 0,    /* Medium gold - not too dark, not too light */
    #f5c935 22%,  /* Brighter gold */
    #FFFF00 45%,  /* Light gold */
    #FF4500 50%,  /* Pure white highlight at center */
    #FFFF00 55%,  /* Light gold */
    #f5c935 78%,  /* Brighter gold */
    #e0a800 100%  /* Medium gold - not too dark, not too light */
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shine 4s linear infinite;
}

@keyframes gold-shine {
  to {
    background-position: 200% center;
  }
}

/* Blue shine with pulse effect - alternative option */
.blue-pulse-shine {
  color: #ff8c00;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 5px rgba(51, 204, 255, 0.5);
  animation: pulse-shine 2s infinite;
}

@keyframes pulse-shine {
  0%, 100% {
    color: ff8c00;
    text-shadow: 0 0 5px rgba(51, 204, 255, 0.5);
  }
  50% {
    color: #00e6ff;
    text-shadow: 0 0 15px rgba(0, 230, 255, 0.8), 0 0 20px rgba(0, 230, 255, 0.5);
  }
}

/* Rainbow shine effect - another option */
.rainbow-shine {
  display: inline-block;
  position: relative;
  color: #f35626;
  background-image: linear-gradient(92deg, #f35626, #feab3a, #599eff, #a155da);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow-hue 6s infinite linear;
  background-size: 400% 100%;
}

@keyframes rainbow-hue {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 400% 50%;
  }
}

/* Elegant sweep shine - subtle option */
.sweep-shine {
  position: relative;
  color: #FFFF00;
  display: inline-block;
  overflow: hidden;
}

.sweep-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 0, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: sweep 3s infinite;
}

@keyframes sweep {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.pricing-faq {
  max-width: 800px;
  margin: 0 auto 80px;
}

.pricing-faq h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.faq-item {
  margin-bottom: 15px;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  color: white;
  flex: 1;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 15px;
}

.icon-plus,
.icon-minus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffe234;
  transition: opacity 0.3s, transform 0.3s;
}

.icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
  color: #ababab;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 20px 20px;
}

.faq-item.active .icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .icon-minus {
  opacity: 1;
  transform: rotate(0);
}