/* Tour Packages Styles */
.destination-section {
    padding: 60px 0;
}

.destination-section:nth-child(odd) {
    background-color: var(--light-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
}

.view-all a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;

}

.view-all a i {
    margin-left: 5px;
    font-size: 14px;
}

.view-all a:hover {
    color: var(--secondary-color);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.experience-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;

}
.card-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.card-content {
    padding: 20px;
}

.card-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
}

.card-rating i {
    color: #ffc107;
    margin-right: 5px;
}

.card-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--dark-color);
}

.location {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
}

.location i {
    margin-right: 5px;
    color: #888;
}

.package-info {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.card-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}

.price {
    display: flex;
    flex-direction: column;
}

.current {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.original {
    font-size: 13px;
    color: #888;
    text-decoration: line-through;
}

.save-tag {
    font-size: 11px;
    color: #28a745;
    font-weight: 500;
}

/* Call and Request button styling */
.buttons-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.call-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff6600;
    border-radius: 6px;
    background-color: white;
    color: #ff6600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.request-btn-container {
    flex-grow: 1;
}

.request-btn {
    width: 100%;
    padding: 13px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .experiences-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
}
