/* Countries Section Styling */

.countries-section {
  padding: 5rem 0 3rem 0;
  background: #f9f9f9;
  position: relative;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.countries-section h2 {
  color: #1F1F1F;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.countries-section h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: #C91C2E;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.countries-carousel {
  padding: 20px 0;
}

.country-card {
  display: block;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin: 10px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.country-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.country-flag {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card h3 {
  color: #1F1F1F;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 1.2rem;
}

/* Owl Carousel Custom Navigation */
.owl-nav {
  text-align: center;
  margin-top: 20px;
}

.owl-prev, .owl-next {
  display: inline-block;
  margin: 0 5px;
  width: 40px;
  height: 40px;
  background: #C91C2E !important;
  color: #fff !important;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
  background: #1F1F1F !important;
}

.owl-dots {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-dot {
  display: inline-block;
  margin: 0 4px;
}

.owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  background: #e0e0e0;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.owl-dot.active span {
  background: #C91C2E;
  transform: scale(1.2);
  border: none;
}

@media (max-width: 767.98px) {
  .countries-section {
    padding: 3rem 0;
  }
}
