/* Custom styles for ProstaVital - Healthcare & Prostate Health Landing Page */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0F5257;
  --primary-dark: #0B3C40;
  --primary-light: #16747A;
  --accent: #2C9C69;
  --accent-light: #E8F5E9;
  --gold: #D4AF37;
  --gray-bg: #F8FAFC;
  --text-dark: #1E293B;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Pulse animation for CTA buttons */
@keyframes pulse-subtle {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgba(44, 156, 105, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(44, 156, 105, 0.6);
  }
}

.btn-pulse {
  animation: pulse-subtle 3s infinite ease-in-out;
}

/* Quiz Option Card Styling */
.quiz-option {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #E2E8F0;
  cursor: pointer;
}

.quiz-option:hover {
  border-color: var(--primary);
  background-color: #F0FDF4;
  transform: translateY(-2px);
}

.quiz-option.selected {
  border-color: var(--accent);
  background-color: #ECFDF5;
  box-shadow: 0 4px 12px rgba(44, 156, 105, 0.15);
}

/* Progress bar animation */
.progress-bar-fill {
  transition: width 0.4s ease-in-out;
}

/* Accordion transition */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
}

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

/* Trust Badge Hover */
.trust-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(15, 82, 87, 0.12);
}

/* Glassmorphism elements */
.glass-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Cookie Banner positioning */
#cookie-banner {
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}
