.destinations-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.destinations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.destinations-intro {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.destinations-logo {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.destinations-intro h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1e1e1e;
}

.destinations-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  max-width: 700px;
  margin: 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.attraction-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.attraction-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.attraction-card-content {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.attraction-card-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.attraction-card-content p {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  line-height: 1.5;
}

.learn-more {
  margin-top: 12px;
  display: inline-block;
  font-size: 13px;
  color: #fff;
  background-color: #007BFF;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.learn-more:hover {
  background-color: #0056b3;
}





/* SEO Text Section Styling */
.seo-text-section {
  background-color: #f5f5f5;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  margin-top: 40px;
}

.seo-content-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.seo-content-container h4 {
  font-size: 24px;
  color: #1d1d1d;
  margin-bottom: 20px;
}

.seo-content-container p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}




.custom-tours-section {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
  color: #333;
  border-top: 1px solid #eee;
}

.custom-tours-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.custom-tours-container h3 {
  font-size: 26px;
  color: #1d1d1d;
  margin-bottom: 20px;
  font-weight: 700;
}

.custom-tours-container p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.custom-contact-link {
  color: #007BFF;
  font-weight: 500;
  text-decoration: none;
}

.custom-contact-link:hover {
  text-decoration: underline;
}
