/* Hero Sections */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(12, 39, 83, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 90%;
}

.hero-svg-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-svg {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: var(--transition-standard);
}

.hero-svg:hover {
  transform: translateY(-10px);
}

.hero-blob {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 87, 51, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 8s infinite alternate ease-in-out;
}

/* Cards */
.card {
  background: var(--background-white);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-standard);
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: var(--transition-standard);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--secondary-color);
  transition: var(--transition-standard);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Stat Cards */
.stat-card {
  background: var(--background-white);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-standard);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-desc {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-step {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-step:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-step:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-step::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border: 3px solid var(--primary-color);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(12, 39, 83, 0.1);
  transition: var(--transition-standard);
}

.timeline-step:hover::after {
  background: var(--secondary-color);
  transform: scale(1.2);
}

.timeline-step:nth-child(odd)::after {
  right: -10px;
}

.timeline-step:nth-child(even)::after {
  left: -10px;
}

.timeline-content {
  padding: 20px 25px;
  border-radius: 10px;
  background: white;
  box-shadow: var(--card-shadow);
  display: inline-block;
  max-width: 90%;
  transition: var(--transition-standard);
}

.timeline-step:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0;
}

/* Accordion */
.accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 15px;
}

.accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  background: var(--background-light);
  border: none;
  border-radius: 8px !important;
  box-shadow: var(--card-shadow);
  padding: 1.2rem 1.5rem;
  transition: var(--transition-standard);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-size: 1.2rem;
  transition: var(--transition-standard);
}

.accordion-body {
  font-size: 1.05rem;
  color: var(--text-light);
  padding: 1.2rem 1.5rem;
  background: white;
  border-radius: 0 0 8px 8px;
  line-height: 1.6;
}

/* Tabs */
.nav-tabs {
  border-bottom: none;
  margin-bottom: 30px;
}

.nav-tabs .nav-item {
  margin: 0 5px;
}

.nav-tabs .nav-link {
  border: none;
  background: var(--background-light);
  color: var(--text-light);
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 50px;
  transition: var(--transition-standard);
}

.nav-tabs .nav-link:hover {
  background: rgba(12, 39, 83, 0.1);
  color: var(--primary-color);
}

.nav-tabs .nav-link.active {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 5px 15px rgba(12, 39, 83, 0.2);
}

/* Forms */
.form-container {
  background: var(--background-light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

/* Contact CTA */
.contact-cta {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: var(--background-light);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.contact-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.contact-link {
  display: inline-block;
  font-weight: 600;
  font-size: 1.05rem;
  color: white;
  background: var(--primary-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-standard);
  box-shadow: 0 5px 15px rgba(12, 39, 83, 0.2);
}

.contact-link:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 87, 51, 0.3);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-step {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-step:nth-child(odd) {
    text-align: left;
  }

  .timeline-step:nth-child(odd)::after {
    right: auto;
    left: 21px;
  }

  .timeline-step:nth-child(even) {
    left: 0;
  }

  .timeline-step:nth-child(even)::after {
    left: 21px;
  }

  .timeline-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .stat {
    font-size: 2.5rem;
  }

  .stat-desc {
    font-size: 1.1rem;
  }

  .stat-card, .feature-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-tabs .nav-link {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}