.navbar{
    position:relative;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}

/* .title-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
} */

.subtitle {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.main-title {
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.rating-stars {
    color: #ffc107;
}

.rating-text {
    font-weight: 600;
    color: #212529;
}

.rating-reviews {
    color: #6c757d;
}

/* .wishlist-link {
    text-decoration: underline;
    text-decoration-color: gray;
    color: #333;
    font-weight: 500;
}

.wishlist-link:hover {
    text-decoration-color: black;
    color: #000;
} */


.tour-gallery {
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-image {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 400px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:last-child {
    position: relative;
}

.more-photos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.more-photos:hover {
    background: rgba(0,0,0,0.7);
}

.tour-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.booking-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: #6c757d;
    flex-shrink: 0;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #212529;
}

.price-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.reserve-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.reserve-info i {
    color: #28a745;
    margin-right: 0.5rem;
}

.tour-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}
/*#region date-arrow  */
.date-button-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    width:100%;
  }

  .custom-date-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: white;
    color: black;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .custom-date-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }
/*#endregion date-arrow  */

/*#region photo-galery-container    */
.gallery-modal .modal-dialog {
    max-width: 95vw;
    height: 95vh;
    margin: 2.5vh auto;
}

.gallery-modal .modal-content {
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    background:none;
    border: none;
}

.gallery-modal .modal-header {
    border-bottom: none;
    padding: 25px 30px 15px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.gallery-modal .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-modal .modal-title i {
    font-size: 1.8rem;
    color: var(--tropical-green);
}

.gallery-modal .modal-body {
    padding: 0;
    height: calc(100% - 80px);
    position: relative;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* <- changed from gradient to transparent */
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.swiper-slide:hover img {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: none;
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.swiper-slide:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.slide-overlay p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: #E2E8F0;
}

.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--tropical-green);
    transform: scale(1.2);
}

.gallery-modal .close-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.gallery-modal .close-btn:hover {
    background: rgba(244, 63, 94, 0.2);
    transform: scale(1.1);
    color: white;
}

.gallery-modal .photo-counter {
    position: absolute;
    top: 30px;
    right: 80px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
    .gallery-modal .tour-card {
        margin: 20px;
        padding: 40px 30px;
    }
    
    .gallery-modal .tour-card h1 {
        font-size: 2rem;
    }
    
    .gallery-modal .modal-dialog {
        height: 100vh;
        margin: 0;
        max-width: 100vw;
    }
    
    .gallery-modal .modal-content {
        border-radius: 0;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
        margin-top: -25px;
    }
    
    .gallery-modal .photo-counter {
        right: 20px;
        top: 20px;
    }
}
/*#endregion photo-galery-container    */

@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;
    }
}
