
/* Enhanced Where We Work Page Styles */
.enhanced-overview {
  background: linear-gradient(135deg, rgba(162, 108, 54, 0.05), rgba(64, 36, 62, 0.05));
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 4rem;
  border: 1px solid rgba(162, 108, 54, 0.1);
}

.overview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.overview-header .section-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overview-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  color: var(--text-color);
}

.highlight-icon {
  font-size: 1.2rem;
}

.enhanced-locations {
  gap: 2.5rem;
}

.enhanced-location-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(162, 108, 54, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.enhanced-location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.enhanced-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.location-header h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.region-badge {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.country-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(162, 108, 54, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.country-flag {
  font-size: 1.5rem;
}

.country-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.country-info strong {
  color: var(--primary-color);
  font-weight: 600;
}

.country-info span {
  color: var(--text-color);
  font-size: 0.9rem;
  opacity: 0.8;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.focus-tag {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.enhanced-stats {
  background: linear-gradient(135deg, rgba(162, 108, 54, 0.1), rgba(64, 36, 62, 0.1));
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.enhanced-impact-section {
  background: linear-gradient(135deg, rgba(53, 4, 95, 0.05), rgba(162, 108, 54, 0.05));
  padding: 4rem 3rem;
  border-radius: 25px;
  margin: 4rem 0;
  text-align: center;
}


.section-header {
  margin-bottom: 3rem;
}

.section-header .section-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.section-header h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
}


.enhanced-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.animated-stat {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(162, 108, 54, 0.1);
}

.animated-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.stat-description {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}


.expansion-plans {
  margin: 4rem 0;
  text-align: center;
}

.expansion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.expansion-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(162, 108, 54, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.expansion-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.expansion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.expansion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.expansion-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expansion-header h3 {
  color: var(--primary-color);
  margin: 0;
}

.timeline-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
