/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.footer {
  background: #252422;
  color: #fffcf2;
  padding: 60px 8% 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left */
.footer-left {
  flex: 1 1 25%;
}

.footer-left .logo {
  font-size: 1.5rem;
  color: #fffcf2;
  margin-bottom: 30px;
}

.footer-left .logo span {
  color: #eb5e28;
}

.footer-left p {
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: justify;

}

.footer-left .awards img {
  margin-right: 10px;
  max-height: 50px;
}

/* Middle */
.footer-middle {
  flex: 1 1 40%;
}

.footer-middle h3 {
  color: #fffcf2;
  margin-bottom: 20px;
}

.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
}

.dest-box {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.dest-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dest-box:hover img {
  transform: scale(1.1);
}

.dest-box span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fffcf2;
  font-weight: bold;
  text-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}

/* Right */
.footer-right {
  flex: 1 1 25%;
}

.footer-right h3 {
  color: #fffcf2;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.footer-right p {
  margin-bottom: 10px;
}

.socials {
  margin-top: 15px;
}

.socials a {
  display: inline-block;
  margin-right: 12px;
  color: #eb5e28;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.socials a:hover {
  color: #fffcf2;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #ccc5b9;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-left, .footer-middle, .footer-right {
    flex: 1 1 100%;
  }
}
