/* Additional Marketing Styles for Stock Recommendations Page */

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse-badge 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Hero Trust Line */
.hero-trust {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Pulse Animation for CTA Buttons */
.pulse {
  animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
  }
}

/* Large Button */
.btn-primary.large {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
}

/* CTA Button in Cards */
.cta-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.cta-banner h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95;
}

.urgency-text {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #ffd700;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Testimonial Cards */
.testimonial-card {
  position: relative;
  padding: 30px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.testimonial-role {
  color: #666;
  font-size: 14px;
  margin: 5px 0 0 0;
}

.testimonial-rating {
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-result {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.result-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 16px;
}

.result-badge.success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(56, 239, 125, 0.3);
}

/* WhatsApp Modal Enhancements */
.whatsapp-logo {
  background: #25D366 !important;
  padding: 15px;
  border-radius: 50%;
}

.modal-highlight {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.modal-highlight h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.urgency-box {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
  text-align: center;
}

.urgency-box p {
  margin: 0;
  color: #856404;
  font-size: 16px;
}

.modal-cta-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.whatsapp-button {
  background: #25D366 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-button:hover {
  background: #128C7E !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5) !important;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.trust-badge {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #4caf50;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .cta-banner {
    padding: 30px 20px;
  }

  .cta-banner h3 {
    font-size: 22px;
  }

  .cta-banner p {
    font-size: 16px;
  }

  .btn-primary.large {
    padding: 16px 30px;
    font-size: 16px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .trust-badges {
    gap: 10px;
  }

  .trust-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .whatsapp-button {
    padding: 16px 30px !important;
    font-size: 16px !important;
  }
}

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

/* Enhanced Line Features in Modal */
.line-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.line-feature:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.line-feature .feature-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.line-feature span:last-child {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all 0.3s ease;
  animation: float-bounce 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.7);
}

.floating-whatsapp .floating-text {
  position: absolute;
  right: 80px;
  background: #333;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover .floating-text {
  opacity: 1;
  right: 85px;
}

.floating-whatsapp .floating-text::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #333;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

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

/* Mobile Responsive for Floating Button */
@media (max-width: 768px) {
  .floating-whatsapp {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  .floating-whatsapp .floating-text {
    display: none;
  }
}

