body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f6fffb;
  color: #333;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #16a085;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .logo {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}
.nav a:hover, .nav a.active {
  color: #ffeb3b;
}

/* Round Tours */
.round-tours {
  padding: 60px 20px;
  text-align: center;
}
.round-tours h2 {
  color: #16a085;
  margin-bottom: 10px;
  font-size: 2rem;
}
.round-tours .subtitle {
  color: #555;
  margin-bottom: 40px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.tour-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.tour-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.tour-card h3 {
  margin: 15px 10px 5px;
  color: #16a085;
}
.tour-card p {
  margin: 5px 15px;
  font-size: 0.9rem;
}
.book-btn {
  display: inline-block;
  margin: 10px 0 20px;
  padding: 10px 20px;
  background: #16a085;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}
.book-btn:hover {
  background: #138f76;
}
/* ==== Footer ==== */
.footer {
  background: #16a085;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  max-width: 1350px;
  margin: auto;
}
/*
.footer-section {
  flex: 1 1 250px;
}*/

.footer-menus
{
  align-items: flex-start !important;
  display: flex;
  flex-direction: column !important; 
  justify-content: flex-start;
  margin-top: 30px;


}

.footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  margin-left: 40px !important;
}

.footer-logo img {
  width: 300px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 0.95rem;
  line-height: 1.6;
  word-wrap: break-word;
  width: 300px;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.footer-section p, .footer-section a {
  color: #e0f7f4;
  font-size: 0.95rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-section i {
  margin-right: 10px;
  font-size: 1rem;
  color: #fff;
}

.footer-section a:hover {
  text-decoration: underline;
  color: #d1f0eb;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #e0f7f4;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

/* Responsive */
@media(max-width:768px){
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section p, .footer-section a {
    justify-content: center;
  }
}
.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #e0f7f4;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 5px;
}

.footer-bottom a.footer-credit {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-bottom a.footer-credit:hover {
  text-decoration: underline;
  color: #c9cc0d;
}

/* Animations */
.fade-in {
  animation: fadeIn 1.2s ease;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Animation */
.fade-in {
  animation: fadeIn 1.2s ease;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}
/* ===== Info Section (Reusable for Round Tours) ===== */
.info-section {
  background: linear-gradient(135deg, #f9fff4 0%, #ffffff 100%);
  padding: 80px 20px;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.info-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
.info-image img:hover {
  transform: scale(1.03);
}

.info-text {
  flex: 1;
  min-width: 280px;
  animation: fadeInRight 1.2s ease;
}

.info-text h2 {
  color: #16a085;
  font-size: 2rem;
  margin-bottom: 10px;
}
.info-text p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.info-btn {
  display: inline-block;
  background: #16a085;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.info-btn:hover {
  background: #138f76;
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    text-align: center;
  }
  .info-image img {
    max-width: 100%;
  }
}
