/* Enhanced Approaches Hero Section */
.approaches-hero {
 background: var(--secondary-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.approaches-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.approaches-hero .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Enhanced Approach Introduction */
.approach-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.intro-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-color);
}

.philosophy-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--light-gray);
  border-radius: 25px;
  border: 2px solid var(--accent-color);
}

.highlight-icon {
  font-size: 1.2rem;
}

/* Enhanced Approaches Grid */
.approaches-section {
  margin-bottom: 4rem;
}

.approaches-section p {
  margin-bottom: 4rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.enhanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.enhanced-approach-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.enhanced-approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.enhanced-approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.enhanced-approach-card .card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}

.rotating-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.enhanced-approach-card:hover .rotating-icon {
  transform: rotate(10deg) scale(1.1);
}

.approach-badge {
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.enhanced-approach-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0.5rem 0;
}

.principles-section,
.implementation-section {
  margin-bottom: 1.5rem;
}

.principles-section h4,
.implementation-section h4 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.enhanced-list {
  list-style: none;
  padding: 0;
}

.enhanced-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
}

.list-icon {
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

.implementation-section p {
  line-height: 1.6;
  color: var(--text-color);
}

/* Enhanced Process Steps */
.enhanced-process {
  background: var(--light-gray);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin-bottom: 4rem;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-top: 1rem;
}

.enhanced-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.enhanced-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.enhanced-step:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.enhanced-step .step-number {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tool-tag {
  background: var(--light-gray);
  color: var(--secondary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--accent-color);
}

.step-connector {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
  margin: 0 auto;
  opacity: 0.5;
}


/* Success Metrics Section */
.success-metrics {
  margin-bottom: 4rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.metric-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.metric-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.metric-card h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.metric-card p {
  color: var(--text-color);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  /* Responsive logo sizing for mobile */
  .logo-img {
    height: 50px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
 
  .hero-buttons {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    width: 100%;
    max-width: 400px;
  }

  /* Adjust dropdown arrow for mobile */
  .dropdown > .nav-link::after {
    font-size: 0.7rem;
  }

  /* Responsive social media links for mobile */
  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }
 

  .programs-grid,
  .team-grid,
  .approaches-grid,
  .partners-grid,
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .program-card,
  .team-member,
  .approach-card,
  .partner-category,
  .location-card {
    padding: 1.5rem;
  }

   
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .department-header {
    flex-direction: column;
    text-align: center;
  }

  .dept-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .department-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .enhanced-cta {
    padding: 3rem 1.5rem;
  }

  .approaches-hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .philosophy-highlights {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .enhanced-grid {
    grid-template-columns: 1fr;
  }

  .enhanced-step {
    flex-direction: column;
    text-align: center;
  }

  .step-connector {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  /* Responsive adjustments for where-we-work page */
  .enhanced-overview {
    padding: 2rem;
  }

  .overview-highlights {
    flex-direction: column;
    gap: 1rem;
  }

  .enhanced-location-card {
    padding: 2rem;
  }

  .location-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .country-item {
    padding: 0.8rem;
  }

  .enhanced-impact-section {
    padding: 3rem 2rem;
  }

  .enhanced-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .expansion-grid {
    grid-template-columns: 1fr;
  }

  .expansion-card {
    padding: 2rem;
  }

}

@media (max-width: 480px) {
  /* Smaller logo for very small screens */
  .logo-img {
    height: 40px;
  }
 

  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Smaller social links for very small screens */
  .social-link {
    width: 35px;
    height: 35px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }
}
