/* ========================================
   INVESTMENT SERVICES - SHARED STYLES
   ======================================== */

/* ================= HERO SECTION ================= */
.investment-hero-section {
  min-height: 65vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.investment-hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.investment-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.investment-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}

.investment-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.investment-hero-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}


.investment-hero-highlights {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-icon {
  width: 45px;
  height: 45px;
  background: var(--secondary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 20px;
  color: var(--primary-color);
}

.highlight-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* ================= INFO SECTION ================= */
.investment-info-section {
  padding: 80px 0;
}

.investment-info-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.investment-info-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #000;
  margin-bottom: 18px;
}

.investment-info-image {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.investment-info-image:hover {
  transform: scale(1.03);
}

/* ================= FEATURE CARDS ================= */
.investment-feature-card {
  background: white;
  border-radius: 18px;
  padding: 35px;
  height: 100%;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.investment-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  transition: height 0.35s ease;
  z-index: 0;
}

.investment-feature-card:hover::after {
  height: 5px;
}

.investment-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.investment-feature-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.investment-feature-card:hover .investment-feature-icon {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  transform: scale(1.15) rotate(5deg);
}

.investment-feature-icon i {
  font-size: 35px;
  color: white;
}

.investment-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.investment-feature-card p {
  color: var(--neutral-color);
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ================= PERFORMANCE SECTION ================= */
.performance-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.performance-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.performance-stat {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
}

.performance-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.performance-value {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.performance-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.performance-desc {
  font-size: 0.95rem;
  color: var(--neutral-color);
  margin: 0;
}

/* ================= ELIGIBILITY SECTION ================= */
.eligibility-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
}

.eligibility-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.eligibility-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eligibility-card h4 i {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.eligibility-card p {
  color: var(--neutral-color);
  line-height: 1.7;
  margin: 0;
}

/* ================= PROCESS STEPS ================= */
.investment-process-step {
  background: white;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #eee;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
  margin-bottom: 25px;
}

.investment-process-step:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.process-step-number {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.3);
}

.process-step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.process-step-desc {
  color: var(--neutral-color);
  line-height: 1.8;
  margin: 0 0 10px;
}

.process-step-list {
  padding-left: 20px;
  margin: 8px 0 0;
  color: var(--neutral-color);
  line-height: 1.8;
}

.process-step-list li {
  margin-bottom: 6px;
  font-size: 0.97rem;
}

.process-step-list li strong {
  color: var(--primary-color);
}

/* ================= TAX BENEFITS ================= */
.tax-benefit-card {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 18px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
  height: 100%;
}

.tax-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.tax-benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.tax-benefit-icon i {
  font-size: 32px;
  color: var(--primary-color);
}

.tax-benefit-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.tax-benefit-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ================= CTA SECTION ================= */
.investment-cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.investment-cta-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 18px;
  color: white;
}

.investment-cta-section p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-invest-now {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 16px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.35);
}

.btn-invest-now:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 193, 7, 0.45);
}

.justified-content {
  text-align: justify;
}

/* ================= FAQ SECTION ================= */
.faq-accordion .faq-item {
  background: white;
  border-radius: 14px;
  margin-bottom: 14px;
  padding: 18px 20px;
  cursor: pointer;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.faq-accordion .faq-item:hover {
  transform: translateX(6px);
}

.faq-accordion .faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-color);
}

.faq-accordion .faq-icon {
  font-size: 20px;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-accordion .faq-answer {
  /* height/opacity/transition managed by JS (initFaqAccordions) */
  color: var(--neutral-color);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-accordion .faq-item.active {
  border-left: 4px solid var(--secondary-color);
}

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

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .investment-hero-section {
    min-height: 50vh;
    padding: 140px 0 50px;
  }

  .investment-info-section {
    padding: 60px 0;
  }

  .performance-section,
  .investment-cta-section {
    padding: 40px 30px;
  }

  .investment-feature-card,
  .eligibility-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .investment-hero-section {
    min-height: auto;
    padding: 140px 0 60px;
  }

  .investment-hero-title {
    font-size: 1.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
  }

  .investment-hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .investment-hero-badge {
    font-size: 0.85rem;
    padding: 6px 16px;
    margin-bottom: 18px;
  }

  /* Info Section Mobile */
  .investment-info-section {
    padding: 50px 0;
  }

  .investment-info-content h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .investment-info-content p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .investment-info-image {
    margin-top: 30px;
    border-radius: 15px;
  }

  /* Feature Cards Mobile */
  .investment-feature-card {
    padding: 28px 22px;
    margin-bottom: 20px;
  }

  .investment-feature-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 18px;
  }

  .investment-feature-icon i {
    font-size: 30px;
  }

  .investment-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .investment-feature-card p {
    font-size: 0.95rem;
  }

  /* Performance Section Mobile */
  .performance-section {
    padding: 35px 25px;
    border-radius: 15px;
  }

  .performance-section h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .performance-stat {
    padding: 25px 20px;
    margin-bottom: 15px;
  }

  .performance-value {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .performance-label {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .performance-desc {
    font-size: 0.9rem;
  }

  /* Eligibility Cards Mobile */
  .eligibility-card {
    padding: 25px 20px;
    margin-bottom: 15px;
  }

  .eligibility-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .eligibility-card h4 i {
    font-size: 1.3rem;
  }

  .eligibility-card p {
    font-size: 0.95rem;
  }

  /* Process Steps Mobile */
  .investment-process-step {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .process-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .process-step-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .process-step-desc {
    font-size: 0.95rem;
  }

  /* Tax Benefit Cards Mobile */
  .tax-benefit-card {
    padding: 30px 22px;
    margin-bottom: 15px;
  }

  .tax-benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .tax-benefit-icon i {
    font-size: 28px;
  }

  .tax-benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .tax-benefit-card p {
    font-size: 0.9rem;
  }

  /* CTA Section Mobile */
  .investment-cta-section {
    padding: 35px 25px;
    border-radius: 15px;
  }

  .investment-cta-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .investment-cta-section p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .btn-invest-now {
    padding: 14px 38px;
    font-size: 1rem;
  }

  /* FAQ Section Mobile */
  .faq-accordion .faq-item {
    padding: 16px 18px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(25, 25, 112, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  }

  .faq-accordion .faq-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  }

  .faq-accordion .faq-item.active {
    border-left: 4px solid var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
  }

  .faq-accordion .faq-question {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
  }

  .faq-accordion .faq-answer {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #5a5a5a;
  }

  .faq-accordion .faq-icon {
    font-size: 18px;
    font-weight: 600;
  }

  /* Spacing Adjustments */
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .g-4 {
    --bs-gutter-y: 1.25rem;
  }
}

@media (max-width: 576px) {
  .investment-hero-section {
    padding: 130px 0 50px;
  }

  .investment-hero-title {
    font-size: 1.65rem;
  }

  .investment-hero-subtitle {
    font-size: 0.92rem;
  }

  .investment-hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .investment-info-content h2 {
    font-size: 1.5rem;
  }

  .investment-feature-card,
  .performance-stat,
  .eligibility-card,
  .investment-process-step {
    padding: 22px 18px;
  }

  .performance-section {
    padding: 30px 20px;
  }

  .performance-value {
    font-size: 2rem;
  }

  .tax-benefit-card {
    padding: 25px 18px;
  }

  .investment-cta-section {
    padding: 30px 20px;
  }

  .investment-cta-section h2 {
    font-size: 1.4rem;
  }

  .btn-invest-now {
    padding: 12px 32px;
    font-size: 0.95rem;
  }
}
