/* Procedure Pages - Reusable CSS */

.hero-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  color: white !important;
  padding: 180px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1920&h=1080&fit=crop&q=80")
    center/cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.procedure-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
}

.procedure-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.procedure-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.procedure-card h3 {
  color: #1e3a5f;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.procedure-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

.section-title {
  color: #1e3a5f;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #ffc107;
  border-radius: 2px;
}

.benefit-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #ffc107;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.benefit-icon {
  font-size: 32px;
  color: #ffc107;
  margin-bottom: 15px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  color: #1e3a5f;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.faq-question i {
  color: #ffc107;
  margin-right: 15px;
  font-size: 24px;
}

.faq-answer {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-left: 39px;
}

.cta-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
}

.cta-btn {
  background: #ffc107;
  color: #1e3a5f;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.cta-btn:hover {
  background: #ff9800;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
  color: #1e3a5f;
}

.stats-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stats-number {
  font-size: 42px;
  font-weight: 700;
  color: #ffc107;
  display: block;
  margin-bottom: 10px;
}

.stats-label {
  font-size: 16px;
  color: white;
  opacity: 0.9;
}

.image-section {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* Final CTA Section - Fresh Redesign */
.final-cta-wrapper {
  padding: 80px 0;
  background: #f8f9fa;
}

.final-cta-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.final-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.final-cta-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.final-cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.final-cta-card:hover .final-cta-image {
  transform: scale(1.05);
}

.final-cta-content {
  padding: 60px 50px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

.final-cta-content h2 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.final-cta-content .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 45px;
}

.final-cta-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}

.final-cta-btn i {
  margin-right: 10px;
  font-size: 18px;
}

.final-cta-btn-primary {
  background: #ffc107;
  color: #1e3a5f;
  border-color: #ffc107;
}

.final-cta-btn-primary:hover {
  background: #ffb300;
  border-color: #ffb300;
  color: #1e3a5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.final-cta-btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.final-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.final-cta-stats {
  margin-top: 40px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.final-cta-stat-item {
  text-align: center;
  padding: 15px 5px;
}

.final-cta-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #ffc107;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.final-cta-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .procedure-card {
    padding: 30px 20px;
  }

  .procedure-card h3 {
    font-size: 24px;
  }

  .final-cta-wrapper {
    padding: 50px 0;
  }

  .final-cta-image-wrapper {
    min-height: 300px;
  }

  .final-cta-content {
    padding: 40px 25px;
    min-height: auto;
  }

  .final-cta-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .final-cta-content .lead {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .final-cta-buttons {
    margin-bottom: 30px;
  }

  .final-cta-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .final-cta-stats {
    margin-top: 30px;
    padding-top: 25px;
  }

  .final-cta-stat-number {
    font-size: 32px;
  }

  .final-cta-stat-label {
    font-size: 12px;
  }
}
