
    .row.card-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
    }
    .col-custom {
      flex: 1 1 calc(25% - 24px);
      max-width: calc(25% - 24px);
    }
    @media (max-width: 992px) {
      .col-custom {
        flex: 1 1 calc(33.33% - 24px);
        max-width: calc(33.33% - 24px);
      }
    }
    @media (max-width: 768px) {
      .col-custom {
        flex: 1 1 calc(50% - 24px);
        max-width: calc(50% - 24px);
      }
    }
    @media (max-width: 576px) {
      .col-custom {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }
    .price-table {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      width: 100%;
    }
    .image img {
      height: 200px;
      width: 100%;
      object-fit: cover;
      border-radius: 8px;
    }
    .btnprimary {
      background: #007bff;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
    }
    .btnprimary:hover {
      background: #0056b3;
    }
 
.things-section {
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}
.filters {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.filters select, .filters button {
  padding: 8px;
  font-size: 1em;
}
.things-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.thing-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.thing-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.thing-card-body {
  padding: 15px;
}
.thing-card-body h3 {
  margin: 0 0 10px;
  font-size: 1em;
}
.thing-card-body .category {
  font-size: 0.85em;
  color: #777;
}
.btn-view {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85em;
}
.btn-view:hover {
  background-color: #0056b3;
}
.accordion-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-toggle {
  width: 100%;
  text-align: left;
  background-color: #f1f1f1;
  padding: 10px 15px;
  font-weight: bold;
  border: none;
  outline: none;
  cursor: pointer;
}
.accordion-content {
  display: none;
  padding: 15px;
  background-color: #fff;
}
.service-summary {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
    display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
 
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border-bottom: 1px solid #e0e0e0;
background-color: #fdfdfd;
}
.service-summary img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  
}
.service-details {
  display: none;
  margin-top: 10px;
}
.show-more {
  color: #007bff;
  cursor: pointer;
  font-size: 0.9em;
}
.services_background{
     background: url('../images/local_services.jpg') center/cover no-repeat;;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px black; 
    
}
.tours-background{
       background: url('../images/our_tours.jpg' ) center/cover no-repeat;;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px black; 
}
  .service-summary {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
  }

  .accordion-item {
    display: block;
  }
  .thing-contact ul {
  margin: 0 0 10px 20px;
  padding: 0;
  list-style-type: disc;
}
.tour-img {
  height: 300px;
  object-fit: cover;
}
.tour-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tour-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
