/* Reset and base styles */
body {
  background-color: #ffffff;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffed4a;
}

/* Hero Section */
.mango-hero {
  position: relative;
  height: 100vh;
  /* Fallback */
  height: 100svh;
  /* Mobile modern */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  background: none;
  margin-top: -76px;
  padding-top: 76px;
}

.mango-hero .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.mango-hero .slide.active {
  opacity: 1;
  z-index: 1;
}

.mango-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #ffd700;
}

.mango-hero .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.hero-contact-btn {
  background-color: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-contact-btn:hover {
  background-color: #ffd700;
  color: #ffffff;
}

/* Content Section */
.mango-content {
  max-width: 1100px;
  margin: 3rem auto 5rem;
  padding: 0 1rem;
}

.content-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.content-container p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #475569;
}

.content-container ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.content-container ul li {
  background-color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  color: #1e293b;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  flex: 1 1 45%;
  text-transform: capitalize;
}

/* Export Locations Section */
.export-locations {
  max-width: 1100px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.location-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.location-icon {
  font-size: 3.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.location-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.location-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .content-container ul {
    flex-direction: column;
  }

  .content-container ul li {
    flex: 1 1 100%;
  }
}