/* Global Presence Section Styles */
.global-presence {
  padding: 80px 0;
  background: linear-gradient(135deg, #27253f 0%, #00aaff 100%);
  color: #fff;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: auto;
}

.branch-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  gap: 15px;
  width: 300px;
  height: 350px;
  margin: 0 auto;
}

.branch-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.branch-card h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.branch-card p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  flex-grow: 1;
}

.branch-card.active-branch {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(238, 50, 99, 0.3);
}

.flag-container {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  padding: 10px;
}

.country-flag {
  width: 80px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.branch-status {
  margin-top: auto;
  width: 100%;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.status-badge.active {
  background: #4ade80;
  color: #fff;
}

.status-badge.coming-soon {
  background: #f59e0b;
  color: #fff;
}

.branch-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-top: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(238, 50, 99, 0.3);
  transition: all 0.3s ease;
  width: auto;
}

.branch-link:hover {
  background: rgba(238, 50, 99, 0.5);
  transform: translateY(-2px);
  color: #fff;
}