/* Custom Styles */
.services-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
    url('../images/backgrounds/tour1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.search-filter-section {
    background: var(--gray-light);
    padding: 40px 0;
}

.search-box {
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
}

.filter-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--secondary-color);
    transform: translateY(-2px);
}


/*#region    ---------Tour sectionn        ----------*/
.tour-card{
    margin-bottom: 50px;
}
  .destination-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  .destination-card:hover {
    transform: scale(1.02);
  }
  .card-title{
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
  }
  .card-time{
    font-size: 14px;
    font-weight: 600; /* Semi-bold */
    font-family: 'Poppins', sans-serif;
  }
  .card-body p {
    margin: 0;
  }

  .tour-price {
    font-size: 18px;
    font-weight: 700;
  }
 
  .tour-rating {
    color: yellow;
    margin-bottom: 1rem;
  }


  .category-btn {
  border-radius: 20px;
  margin: 5px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  background-color: white;
  transition: background-color 0.3s;
}

.category-btn.active {
  background-color: #00AEEF;
  color: white;
}

.destination-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: none;
}

.destination-card:hover {
  transform: scale(1.02);
}

.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-title {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-time {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.tour-rating {
  color: #FFD700;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.rating-text {
  color: #333;
  font-weight: 500;
  margin-left: 8px;
}

.from-text {
  font-size: 14px;
  color: #555;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.tour-price {
  font-size: 18px;
  font-weight: 700;
  color: #00AEEF;
}

.per-person {
  font-size: 14px;
  font-weight: 400;
  color: #444;
  margin-left: 4px;
}

  /*#endregion    ---------Tour sectionn        ----------*/


.marriage-section {
    background: linear-gradient(135deg, var(--light-color), var(--white));
    padding: 80px 0;
    margin-top: 60px;
}

.marriage-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.marriage-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

.section-divider {
    height: 4px;
    background: rgb(216, 216, 216);
    border-radius: 2px;
    margin: 60px 0;
}

.stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-item {
        margin-bottom: 30px;
    }
    
    .search-box {
        padding: 15px;
    }
    
    .filter-btn {
        margin: 5px;
        padding: 10px 20px;
    }
    .hero {
        padding-top: 100px;
     }
     .hero h1 {
         font-size: 2.5rem;
     }
     
     .hero p {
         font-size: 1.1rem;
     }
     
     .section-title {
         font-size: 2rem;
     }
     .navbar{
         position: fixed;
     }
    .phone-appear{
     display: flex;
    }
}