/* ========================================
   NEW COMPONENT STYLES FOR ICLPSM ENHANCEMENT
   ======================================== */

/* Accent Green Variable for buttons */
:root {
  --accent-green: #C8D64F;
}

/* Success Story Cards */
.success-story-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.success-story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.success-story-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.success-story-content {
  padding: 2rem;
}

.success-story-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--neutral-gray-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  position: relative;
  padding-left: 1.5rem;
}

.success-story-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-main);
  opacity: 0.3;
}

.success-story-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--neutral-gray-light);
}

.success-story-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-main);
}

.success-story-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 700;
}

.success-story-info p {
  margin: 0.25rem 0 0 0;
  font-size: 0.9rem;
  color: var(--neutral-gray-dark);
}

/* Resource Cards */
.resource-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-main);
  margin-bottom: 1.5rem;
}

.resource-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateX(5px);
}

.resource-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-main), var(--secondary-main));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.resource-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.resource-description {
  color: var(--neutral-gray-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* FAQ Accordion */
.faq-accordion {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: white;
  border: none;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid transparent;
}

.faq-question:hover {
  background: var(--neutral-gray-light);
  border-left-color: var(--primary-main);
}

.faq-question.active {
  background: var(--neutral-gray-light);
  border-left-color: var(--primary-main);
  color: var(--primary-main);
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

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

.faq-answer p {
  color: var(--neutral-gray-dark);
  line-height: 1.8;
  margin: 0;
}

/* Stats Counter */
.stats-counter {
  text-align: center;
  padding: 2rem 1rem;
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-main);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.counter-label {
  font-size: 1.1rem;
  color: var(--neutral-gray-dark);
  font-weight: 600;
}

/* CTA Variations */
.cta-box {
  background: linear-gradient(135deg, var(--primary-main), var(--secondary-main));
  color: white;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.cta-box h2 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-cta-white {
  background: white;
  color: var(--primary-main);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-cta-white:hover {
  background: var(--neutral-gray-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-decoration: none;
  color: var(--primary-main);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .counter-number {
    font-size: 2.5rem;
  }
}
