/* === Global === */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f2f2f2;
  color: #333;
  text-align: center;
}

a {
  color: #2c7a7b;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* === Header === */
header {
  background: #2c7a7b;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}
.logo span {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 5px;
}

/* === Menu === */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
nav a {
  color: #fff;
  font-weight: bold;
}
.menu-icon {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
#menu-toggle { display: none; }

@media (max-width:768px) {
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    background: #2c7a7b;
    padding: 10px 20px;
    border-radius: 8px;
    display: none;
  }
  #menu-toggle:checked + .menu-icon + nav ul { display: flex; }
  .menu-icon { display: block; margin-left: auto; }
}

/* === Hero === */
.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#hero { padding: 20px; }

/* === Tours === */
.tours-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
}
.tour-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.tour-box img {
  width: 100%;
  border-radius: 10px;
  height: 300px;
  object-fit: cover;
}
.tour-button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  background: #2c7a7b;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
}
.tour-button:hover { background: #1b4f51; }

@media (max-width:768px) {
  .tours-container { flex-direction: column; align-items: center; }
  .tour-box { max-width: 90%; margin-bottom: 20px; }
}

/* === Logos Reviews === */
#reviews-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 60px 0 0 0;
}
.review-logo { width: 100px; height: 100px; }
.review-logoo { width: 200px; height: 100px; }

/* === Testimonials === */
.testimonial-slider { overflow: hidden; width: 100%; }
.testimonial-slide {
  display: flex;
  gap: 20px;
  animation: slide-left 20s linear infinite;
}
.testimonial { 
  background: #fff;
  padding: 20px;
  min-width: 300px;
  max-width: 350px;
  border-radius: 15px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.testimonial span { 
  display: block; 
  font-weight: bold; 
  margin-top: 10px; 
  color: #2c7a7b; 
}
@keyframes slide-left { 
  0% { transform: translateX(0); } 
  100% { transform: translateX(-50%); } 
}

/* === Locations === */
#locations {
  background: #e0f7f7;
  padding: 20px;
  max-width: 900px;
  margin: 20px auto;
  border-radius: 10px;
}
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  border-radius: 10px;
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* === Contact Small === */
#contact-small {
  background: #d0f0f0;
  padding: 15px;
  max-width: 900px;
  margin: 20px auto;
  border-radius: 10px;
}

/* === Footer === */
footer {
  background: #2c7a7b;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  margin-top: 20px;
}

/* === WhatsApp Button === */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 100;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
